| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef TOOLS_GN_SWITCHES_H_ | 5 #ifndef TOOLS_GN_SWITCHES_H_ |
| 6 #define TOOLS_GN_SWITCHES_H_ | 6 #define TOOLS_GN_SWITCHES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/strings/string_piece.h" | 10 #include "base/strings/string_piece.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 extern const char kFailOnUnusedArgs_Help[]; | 45 extern const char kFailOnUnusedArgs_Help[]; |
| 46 | 46 |
| 47 extern const char kMarkdown[]; | 47 extern const char kMarkdown[]; |
| 48 extern const char kMarkdown_HelpShort[]; | 48 extern const char kMarkdown_HelpShort[]; |
| 49 extern const char kMarkdown_Help[]; | 49 extern const char kMarkdown_Help[]; |
| 50 | 50 |
| 51 extern const char kNoColor[]; | 51 extern const char kNoColor[]; |
| 52 extern const char kNoColor_HelpShort[]; | 52 extern const char kNoColor_HelpShort[]; |
| 53 extern const char kNoColor_Help[]; | 53 extern const char kNoColor_Help[]; |
| 54 | 54 |
| 55 extern const char kScriptExecutable[]; |
| 56 extern const char kScriptExecutable_HelpShort[]; |
| 57 extern const char kScriptExecutable_Help[]; |
| 58 |
| 55 extern const char kQuiet[]; | 59 extern const char kQuiet[]; |
| 56 extern const char kQuiet_HelpShort[]; | 60 extern const char kQuiet_HelpShort[]; |
| 57 extern const char kQuiet_Help[]; | 61 extern const char kQuiet_Help[]; |
| 58 | 62 |
| 59 extern const char kRoot[]; | 63 extern const char kRoot[]; |
| 60 extern const char kRoot_HelpShort[]; | 64 extern const char kRoot_HelpShort[]; |
| 61 extern const char kRoot_Help[]; | 65 extern const char kRoot_Help[]; |
| 62 | 66 |
| 63 extern const char kRuntimeDepsListFile[]; | 67 extern const char kRuntimeDepsListFile[]; |
| 64 extern const char kRuntimeDepsListFile_HelpShort[]; | 68 extern const char kRuntimeDepsListFile_HelpShort[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 80 extern const char kVerbose_HelpShort[]; | 84 extern const char kVerbose_HelpShort[]; |
| 81 extern const char kVerbose_Help[]; | 85 extern const char kVerbose_Help[]; |
| 82 | 86 |
| 83 extern const char kVersion[]; | 87 extern const char kVersion[]; |
| 84 extern const char kVersion_HelpShort[]; | 88 extern const char kVersion_HelpShort[]; |
| 85 extern const char kVersion_Help[]; | 89 extern const char kVersion_Help[]; |
| 86 | 90 |
| 87 } // namespace switches | 91 } // namespace switches |
| 88 | 92 |
| 89 #endif // TOOLS_GN_SWITCHES_H_ | 93 #endif // TOOLS_GN_SWITCHES_H_ |
| OLD | NEW |