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

Unified Diff: remoting/host/BUILD.gn

Issue 1293073006: Make gtk2/gtk3 compile time switchable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide gkt3 targets when use_gtk3==0. Created 5 years, 4 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
Index: remoting/host/BUILD.gn
diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn
index fed9117bf5728a73bade79a3274a02c0f3c6c2bc..d07efbc4b57659cfac374f6ece4d52bfd53fb9a6 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:xrandr",
]
if (!is_chromeos) {
- deps += [ "//build/config/linux/gtk" ]
+ deps += [ "//build/config/linux/gtk2" ]
Nico 2015/08/25 00:23:52 same question
}
} else {
sources -= [
@@ -450,7 +450,7 @@ if (is_mac) { # TODO(GYP) Mac build of remoting host.
}
if (is_linux) {
- deps += [ "//build/config/linux/gtk" ]
+ deps += [ "//build/config/linux/gtk2" ]
}
if (is_linux || is_mac) {
libs = [ "pam" ]

Powered by Google App Engine
This is Rietveld 408576698