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

Unified Diff: tools/gn/config_values.cc

Issue 1376733005: [GN]: Include asmflags in ConfigValues::AppendValues (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | 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 d87ed84b80aa04d3aab2637de57f112f6a5b760a..73486cd84bfeac815ea386e52de8332de330f772 100644
--- a/tools/gn/config_values.cc
+++ b/tools/gn/config_values.cc
@@ -23,6 +23,7 @@ ConfigValues::~ConfigValues() {
}
void ConfigValues::AppendValues(const ConfigValues& append) {
+ VectorAppend(&asmflags_, append.asmflags_);
VectorAppend(&cflags_, append.cflags_);
VectorAppend(&cflags_c_, append.cflags_c_);
VectorAppend(&cflags_cc_, append.cflags_cc_);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698