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

Unified Diff: chrome/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 | « chrome/browser/ui/libgtk2ui/gtk2_ui.cc ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/BUILD.gn
diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
index 21a22ce208ea38741449a95403693d218869c2ed..5ba66dec8046d797fc03c62411d4a15ea6e635a9 100644
--- a/chrome/test/BUILD.gn
+++ b/chrome/test/BUILD.gn
@@ -573,7 +573,11 @@ if (!is_android) {
]
if (!use_ozone) {
sources += [ "../browser/ui/libgtk2ui/select_file_dialog_interactive_uitest.cc" ]
- configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ]
+ if (use_gtk3) {
+ configs += [ "//build/config/linux/gtk3:gtk3_internal_config" ]
+ } else {
+ configs += [ "//build/config/linux/gtk2:gtk2_internal_config" ]
+ }
}
}
}
« no previous file with comments | « chrome/browser/ui/libgtk2ui/gtk2_ui.cc ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698