1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
--- remoting/host/BUILD.gn.orig 2017-03-09 20:04:35 UTC
+++ remoting/host/BUILD.gn
@@ -329,7 +329,7 @@ static_library("host") {
deps += [ "//components/policy:generated" ]
}
- if (is_linux && !is_chromeos) {
+ if ((is_linux || is_bsd) && !is_chromeos) {
libs += [ "pam" ]
}
@@ -348,7 +348,7 @@ static_library("host") {
"input_injector_x11.cc",
"local_input_monitor_x11.cc",
]
- if (is_linux) {
+ if (is_linux || is_bsd) {
# These will already be filtered out on non-Linux.
sources -= [
"linux/unicode_to_keysym.cc",
@@ -538,7 +538,7 @@ source_set("unit_tests") {
"touch_injector_win_unittest.cc",
]
- if (!use_x11 && is_linux) {
+ if (!use_x11 && (is_linux || is_bsd)) {
sources -= [ "linux/unicode_to_keysym_unittest.cc" ]
}
if (use_ozone || is_chromeos) {
@@ -750,7 +750,7 @@ if (enable_me2me_host) {
if (is_desktop_linux) {
deps += [ "//build/config/linux/gtk" ]
}
- if ((is_linux && !is_chromeos) || is_mac) {
+ if ((is_linux && !is_chromeos) || is_mac || is_bsd) {
libs = [ "pam" ]
}
@@ -820,7 +820,7 @@ if (enable_me2me_host) {
}
}
}
- if (is_chrome_branded && enable_me2me_host && is_linux && !is_chromeos) {
+ if (is_chrome_branded && enable_me2me_host && is_linux && is_bsd && !is_chromeos) {
group("remoting_me2me_host_archive") {
deps = [
"//remoting/host/installer/linux:remoting_me2me_host_archive",
|