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

Unified Diff: tools/gn/config_values.cc

Issue 1606553002: Add support for Mac/iOS application bundles to GN tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: base_unittests builds and pass all tests with GN Created 4 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
Index: tools/gn/config_values.cc
diff --git a/tools/gn/config_values.cc b/tools/gn/config_values.cc
index 73486cd84bfeac815ea386e52de8332de330f772..18dd98ddb5501e089664cb1cd50a971b3c07d481 100644
--- a/tools/gn/config_values.cc
+++ b/tools/gn/config_values.cc
@@ -34,6 +34,7 @@ void ConfigValues::AppendValues(const ConfigValues& append) {
VectorAppend(&ldflags_, append.ldflags_);
VectorAppend(&lib_dirs_, append.lib_dirs_);
VectorAppend(&libs_, append.libs_);
+ VectorAppend(&bundle_data_, append.bundle_data_);
// Only append precompiled header if there isn't one. It might be nice to
// throw an error if there are conflicting precompiled headers, but that

Powered by Google App Engine
This is Rietveld 408576698