9ad5184453
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
--- third_party/libusb/BUILD.gn.orig 2022-11-30 08:12:58 UTC
|
|
+++ third_party/libusb/BUILD.gn
|
|
@@ -3,7 +3,7 @@
|
|
# found in the LICENSE file.
|
|
|
|
# libusb is only used by //services/device/usb on macOS.
|
|
-assert(is_mac)
|
|
+assert(is_mac || is_bsd)
|
|
|
|
import("//build/config/chromeos/ui_mode.gni")
|
|
import("//build/config/features.gni")
|
|
@@ -116,7 +116,7 @@ static_library("libusb") {
|
|
]
|
|
}
|
|
|
|
- if (is_linux || is_chromeos) {
|
|
+ if ((is_linux || is_chromeos) && !is_bsd) {
|
|
sources += [
|
|
"src/libusb/os/linux_usbfs.c",
|
|
"src/libusb/os/linux_usbfs.h",
|
|
@@ -127,11 +127,21 @@ static_library("libusb") {
|
|
]
|
|
}
|
|
|
|
+ if (is_openbsd) {
|
|
+ sources += [
|
|
+ "src/libusb/os/openbsd_usb.c",
|
|
+ ]
|
|
+ defines += [
|
|
+ "OS_OPENBSD=1",
|
|
+ "_GNU_SOURCE=1",
|
|
+ ]
|
|
+ }
|
|
+
|
|
if (is_chromeos_ash) {
|
|
defines += [ "USBI_TIMERFD_AVAILABLE" ]
|
|
}
|
|
|
|
- if (use_udev) {
|
|
+ if (use_udev && !is_bsd) {
|
|
sources += [ "src/libusb/os/linux_udev.cc" ]
|
|
defines += [
|
|
"HAVE_LIBUDEV=1",
|
|
@@ -140,7 +150,7 @@ static_library("libusb") {
|
|
deps += [ "//build/linux/libudev" ]
|
|
}
|
|
|
|
- if ((is_linux || is_chromeos) && !use_udev) {
|
|
+ if ((is_linux || is_chromeos) && !use_udev && !is_bsd) {
|
|
sources += [ "src/libusb/os/linux_netlink.c" ]
|
|
defines += [ "HAVE_LINUX_NETLINK_H" ]
|
|
}
|