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

Unified Diff: tools/gn/config_values.cc

Issue 1919813003: Apply arflags to dependent configs in GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/config_values.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/config_values.cc
diff --git a/tools/gn/config_values.cc b/tools/gn/config_values.cc
index 73486cd84bfeac815ea386e52de8332de330f772..cfcb9e4387b4d8147b1fd43d44308ed4efc02806 100644
--- a/tools/gn/config_values.cc
+++ b/tools/gn/config_values.cc
@@ -24,6 +24,7 @@ ConfigValues::~ConfigValues() {
void ConfigValues::AppendValues(const ConfigValues& append) {
VectorAppend(&asmflags_, append.asmflags_);
+ VectorAppend(&arflags_, append.arflags_);
VectorAppend(&cflags_, append.cflags_);
VectorAppend(&cflags_c_, append.cflags_c_);
VectorAppend(&cflags_cc_, append.cflags_cc_);
« no previous file with comments | « tools/gn/config_values.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698