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

Unified Diff: remoting/host/BUILD.gn

Issue 2514413002: Clean up GTK3 build flags. (Closed)
Patch Set: Fixes Created 4 years, 1 month 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 16b1427899d440247317df56d17e605d84735a63..0bed35b3b369dd32dc97ce6c6f20d3553ddf62ae 100644
--- a/remoting/host/BUILD.gn
+++ b/remoting/host/BUILD.gn
@@ -338,11 +338,7 @@ static_library("host") {
"//build/config/linux:xrandr",
]
if (is_desktop_linux) {
- if (use_gtk3) {
- deps += [ "//build/config/linux/gtk3" ]
- } else {
- deps += [ "//build/config/linux/gtk2" ]
- }
+ deps += [ "//build/config/linux/gtk" ]
}
} else {
sources -= [
@@ -752,11 +748,7 @@ if (enable_me2me_host) {
}
if (is_desktop_linux) {
- if (use_gtk3) {
- deps += [ "//build/config/linux/gtk3" ]
- } else {
- deps += [ "//build/config/linux/gtk2" ]
- }
+ deps += [ "//build/config/linux/gtk" ]
}
if ((is_linux && !is_chromeos) || is_mac) {
libs = [ "pam" ]

Powered by Google App Engine
This is Rietveld 408576698