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

Unified Diff: remoting/test/BUILD.gn

Issue 2342163002: Fix gtk3 build (Closed)
Patch Set: wip Created 4 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 | « remoting/host/it2me/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/BUILD.gn
diff --git a/remoting/test/BUILD.gn b/remoting/test/BUILD.gn
index 86e0fca15aa0aa52a52f231983e13775e6592013..67d6eb420063a4639ba6d3fe8b45cb58f4eaa02e 100644
--- a/remoting/test/BUILD.gn
+++ b/remoting/test/BUILD.gn
@@ -196,7 +196,11 @@ if (enable_remoting_host && !is_android && !is_chromeos) {
]
if (is_desktop_linux) {
- deps += [ "//build/config/linux/gtk2" ]
+ if (use_gtk3) {
+ deps += [ "//build/config/linux/gtk3" ]
+ } else {
+ deps += [ "//build/config/linux/gtk2" ]
+ }
}
}
}
« no previous file with comments | « remoting/host/it2me/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698