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

Unified Diff: base/test/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 | « base/BUILD.gn ('k') | base/third_party/symbolize/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/BUILD.gn
diff --git a/base/test/BUILD.gn b/base/test/BUILD.gn
index 09775850ece576cf04d09402452bdf158db5a550..310634369ca1ac6f32615c4df9678f7b8ef6fe00 100644
--- a/base/test/BUILD.gn
+++ b/base/test/BUILD.gn
@@ -106,7 +106,7 @@ static_library("test_support_base") {
}
if (is_ios) {
# iOS uses its own unit test launcher.
- sources -= "launcher/unit_test_launcher.cc"
+ sources -= [ "launcher/unit_test_launcher.cc" ]
# Pull in specific Mac files for iOS (which have been filtered out
# by file name rules).
@@ -114,7 +114,7 @@ static_library("test_support_base") {
sources += "test_file_util_mac.cc"
}
if (toolkit_uses_gtk) {
- configs += "//build/config/linux:gtk"
+ configs += [ "//build/config/linux:gtk" ]
}
}
@@ -135,7 +135,7 @@ static_library("test_support_perf") {
direct_dependent_configs = [ ":perf_test_config" ]
if (toolkit_uses_gtk) {
- configs += "//build/config/linux:gtk"
+ configs += [ "//build/config/linux:gtk" ]
}
}
« no previous file with comments | « base/BUILD.gn ('k') | base/third_party/symbolize/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698