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

Unified Diff: tools/gn/secondary/net/BUILD.gn

Issue 138273007: Convert GN single-item list concat to use lists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 11 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 | « tools/gn/secondary/ipc/BUILD.gn ('k') | tools/gn/secondary/net/third_party/nss/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/secondary/net/BUILD.gn
diff --git a/tools/gn/secondary/net/BUILD.gn b/tools/gn/secondary/net/BUILD.gn
index b474ca37cd221a2b8294ea5c54eeb5b9be94974e..8a8d121fde2ab0d4e9e61c527842503d02cb5069 100644
--- a/tools/gn/secondary/net/BUILD.gn
+++ b/tools/gn/secondary/net/BUILD.gn
@@ -1109,7 +1109,7 @@ component("net") {
}
if (is_linux && use_nss) {
- configs += "//third_party/nss:nss_linux_config"
+ configs += [ "//third_party/nss:nss_linux_config" ]
}
if (is_chromeos) {
@@ -1190,9 +1190,9 @@ component("net") {
posix_avoid_mmap = false # TODO(brettw) should be true on 32-bit Android.
if (posix_avoid_mmap) {
defines = [ "POSIX_AVOID_MMAP" ]
- sources -= "disk_cache/mapped_file_posix.cc"
+ sources -= [ "disk_cache/mapped_file_posix.cc" ]
} else { # !posix_avoid_mmap
- sources -= "disk_cache/mapped_file_avoid_mmap_posix.cc"
+ sources -= [ "disk_cache/mapped_file_avoid_mmap_posix.cc" ]
}
}
}
« no previous file with comments | « tools/gn/secondary/ipc/BUILD.gn ('k') | tools/gn/secondary/net/third_party/nss/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698