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

Unified Diff: content/browser/BUILD.gn

Issue 2191733002: make use of use_gconf & use_glib gn args in content/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo fixup Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/BUILD.gn
diff --git a/content/browser/BUILD.gn b/content/browser/BUILD.gn
index 35b2f198f77181648b747a85d1b78592258bec0e..83c5903be420f07a17529ffdab223ee6c921f064 100644
--- a/content/browser/BUILD.gn
+++ b/content/browser/BUILD.gn
@@ -279,9 +279,15 @@ source_set("browser") {
configs += [
"//build/config/linux/atk",
"//build/config/linux/atk:warnings",
- "//build/config/linux/gconf",
- "//build/config/linux:glib",
]
+
+ if (use_gconf) {
+ configs += [ "//build/config/linux/gconf" ]
+ }
+
+ if (use_glib) {
+ configs += [ "//build/config/linux:glib" ]
+ }
}
if (is_linux && use_aura) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698