opnsense-ports/devel/electron22/files/patch-services_device_usb_BUILD.gn
Franco Fichtner d016c42591 */*: sync with upstream
Taken from: FreeBSD
2023-01-30 10:59:54 +01:00

52 lines
1.3 KiB
Text

--- services/device/usb/BUILD.gn.orig 2022-10-29 13:32:26 UTC
+++ services/device/usb/BUILD.gn
@@ -103,15 +103,17 @@ static_library("usb") {
deps += [ "//third_party/re2" ]
}
- if (is_mac) {
- sources += [
- "usb_device_handle_mac.cc",
- "usb_device_handle_mac.h",
- "usb_device_mac.cc",
- "usb_device_mac.h",
- "usb_service_mac.cc",
- "usb_service_mac.h",
- ]
+ if (is_mac || is_openbsd) {
+ if (is_mac) {
+ sources += [
+ "usb_device_handle_mac.cc",
+ "usb_device_handle_mac.h",
+ "usb_device_mac.cc",
+ "usb_device_mac.h",
+ "usb_service_mac.cc",
+ "usb_service_mac.h",
+ ]
+ }
# These sources and deps are required for libusb.
# TODO(https://crbug.com/1096743) Remove these sources.
@@ -135,6 +137,13 @@ static_library("usb") {
deps += [ "//third_party/libusb" ]
}
+ if (is_freebsd) {
+ sources += [
+ "usb_service_fake.cc",
+ "usb_service_fake.h",
+ ]
+ }
+
if (is_linux || is_chromeos) {
sources += [
"usb_device_linux.cc",
@@ -152,7 +161,7 @@ static_library("usb") {
deps += [ "//device/udev_linux" ]
}
- if (is_android || is_chromeos || is_linux) {
+ if (is_android || is_chromeos || is_linux && !is_bsd) {
sources += [
"usb_device_handle_usbfs.cc",
"usb_device_handle_usbfs.h",