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

Unified Diff: gn/BUILD.gn

Issue 2254733008: include extra_cflags* in the step description (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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: gn/BUILD.gn
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 26e80f8dfc45f9e1ab6cfb95116d6967a8c58d5f..cea57454a9a7ccbedd77d61ccdf745ff11c63ea9 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -73,7 +73,7 @@ toolchain("gcc_like") {
outputs = [
"{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
]
- description = "$cc ... -o {{output}}"
+ description = "$cc ... $extra_cflags $extra_cflags_c -o {{output}}"
}
tool("cxx") {
@@ -83,7 +83,7 @@ toolchain("gcc_like") {
outputs = [
"{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
]
- description = "$cxx ... -o {{output}}"
+ description = "$cxx ... $extra_cflags $extra_cflags_cc -o {{output}}"
}
tool("asm") {
« 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