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" ] |
} |
} |
} |