Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1576)

Unified Diff: remoting/host/BUILD.gn

Issue 1319843004: Gate gtk on chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@drm
Patch Set: sync&rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/host/it2me/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/BUILD.gn
diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn
index 3605c8ebfac0f65cced714d54f8a938f83868f6d..57a1f599140ab5ba302740eca6aa17853ce06c57 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -90,7 +90,7 @@ if (is_mac) { # TODO(GYP) Mac build of remoting host.
"//build/config/linux:x11",
"//build/config/linux:xrandr",
]
- if (!is_chromeos) {
+ if (is_desktop_linux) {
deps += [ "//build/config/linux/gtk2" ]
}
} else {
@@ -452,10 +452,10 @@ if (is_mac) { # TODO(GYP) Mac build of remoting host.
deps += [ "//third_party/libjingle:libjingle_webrtc" ]
}
- if (is_linux) {
+ if (is_desktop_linux) {
deps += [ "//build/config/linux/gtk2" ]
}
- if (is_linux || is_mac) {
+ if ((is_linux && !is_chromeos) || is_mac) {
libs = [ "pam" ]
}
}
« no previous file with comments | « no previous file | remoting/host/it2me/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698