Index: tools/gn/variables.cc |
diff --git a/tools/gn/variables.cc b/tools/gn/variables.cc |
index 15c22264885aa70123ee18f5533c4b427a680894..0b7ac7a1e5bef7c8f411441c7c1cd5d45e0efa72 100644 |
--- a/tools/gn/variables.cc |
+++ b/tools/gn/variables.cc |
@@ -403,11 +403,25 @@ const char kCommonCflagsHelp[] = |
" and Objective C++ compilers.\n" |
"\n" |
" To target one of these variants individually, use \"cflags_c\",\n" |
- " \"cflags_cc\", \"cflags_objc\", and \"cflags_objcc\", respectively.\n" |
- " These variant-specific versions will be appended to the \"cflags\".\n" |
+ " \"cflags_cc\", \"cflags_objc\", and \"cflags_objcc\",\n" |
+ " respectively.\n" |
+ "\n" |
+ " These variant-specific versions of cflags* will be appended to the\n" |
+ " \"cflags\".\n" |
COMMON_ORDERING_HELP; |
const char* kCflags_Help = kCommonCflagsHelp; |
+const char kAsmflags[] = "asmflags"; |
+const char kAsmflags_HelpShort[] = |
+ "asmflags: [string list] Flags passed to any assembly compiler."; |
+const char* kAsmflags_Help = |
+ "asmflags: Flags passed to any assembly compiler.\n" |
+ "\n" |
+ " A list of strings.\n" |
+ "\n" |
+ " \"asmflags\" are passed to any invocation of a tool that takes an\n" |
+ " .asm or .S file as input.\n"; |
+ |
const char kCflagsC[] = "cflags_c"; |
const char kCflagsC_HelpShort[] = |
"cflags_c: [string list] Flags passed to the C compiler."; |