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

Unified Diff: chrome/test/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: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index a6bf7517bcb97ba45867e96a57d3b5e747783294..1105e71f62743e0c1afab7eff4d9d7393691de32 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -590,11 +590,7 @@ if (!is_android) {
]
if (!use_ozone) {
sources += [ "../browser/ui/libgtkui/select_file_dialog_interactive_uitest.cc" ]
- if (use_gtk3) {
- configs += [ "//build/config/linux/gtk3:gtk3_internal_config" ]
- } else {
- configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ]
- }
+ deps += [ "//build/config/linux/gtk" ]
}
}
}
@@ -4135,11 +4131,7 @@ test("unit_tests") {
deps += [ "//build/linux/libgio" ]
}
if (!is_chromeos && !use_ozone && is_linux) {
- if (use_gtk3) {
- deps += [ "//chrome/browser/ui/libgtkui:libgtk3ui" ]
- } else {
- deps += [ "//chrome/browser/ui/libgtkui:libgtk2ui" ]
- }
+ deps += [ "//chrome/browser/ui/libgtkui" ]
}
if (enable_task_manager) {

Powered by Google App Engine
This is Rietveld 408576698