Index: tools/gn/command_args.cc |
diff --git a/tools/gn/command_args.cc b/tools/gn/command_args.cc |
index 8098ea18f9e51f164ad6f4ab5ceb53c4981dd306..50bdbe913faae97b84811407209857710954cc1a 100644 |
--- a/tools/gn/command_args.cc |
+++ b/tools/gn/command_args.cc |
@@ -243,8 +243,10 @@ int EditArgsFile(const std::string& build_dir) { |
if (!base::PathExists(arg_file)) { |
std::string argfile_default_contents = |
"# Build arguments go here. Examples:\n" |
- "# enable_doom_melon = true\n" |
- "# crazy_something = \"absolutely\"\n"; |
+ "# is_component_build = true\n" |
+ "# is_debug = false\n" |
+ "# See \"gn args <dir_name> --list\" for available build " |
+ "arguments.\n"; |
#if defined(OS_WIN) |
// Use Windows lineendings for this file since it will often open in |
// Notepad which can't handle Unix ones. |