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

Unified Diff: net/BUILD.gn

Issue 1290383005: use more specific variables in net/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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: net/BUILD.gn
diff --git a/net/BUILD.gn b/net/BUILD.gn
index 5d9801b21ae33cbd2a2070c8821bd35a15a7bc40..fae9f3dab21f947d075992429161f1ff73aa5fb1 100644
--- a/net/BUILD.gn
+++ b/net/BUILD.gn
@@ -1007,12 +1007,16 @@ if (!is_ios && !is_android) {
]
if (is_desktop_linux) {
- configs += [
- "//build/config/linux:gconf",
- "//build/config/linux:glib",
- ]
deps += [ "//build/config/linux:gio" ]
}
+
+ if (use_gconf) {
+ configs += [ "//build/config/linux:gconf" ]
+ }
+
+ if (use_glib) {
+ configs += [ "//build/config/linux:glib" ]
+ }
}
}
« 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