blob: 68b3d4ed675a7fe241d89691701dc79672e4b948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- services/device/hid/BUILD.gn.orig 2019-04-08 08:33:02 UTC
+++ services/device/hid/BUILD.gn
@@ -51,6 +51,19 @@ source_set("hid") {
deps += [ "//device/udev_linux" ]
}
+ if (is_bsd) {
+ sources -= [
+ "hid_connection_linux.cc",
+ "hid_connection_linux.h",
+ ]
+ sources += [
+ "hid_connection_freebsd.cc",
+ "hid_connection_freebsd.h",
+ "hid_service_freebsd.cc",
+ "hid_service_freebsd.h",
+ ]
+ }
+
if (is_chromeos) {
deps += [ "//chromeos/dbus" ]
}
|