| 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 29 matching lines...) Expand all Loading... |
| 94 " This switch will turn on matching all toolchains.\n" \ | 98 " This switch will turn on matching all toolchains.\n" \ |
| 95 "\n" \ | 99 "\n" \ |
| 96 " For example, a file is in a target might be compiled twice:\n" \ | 100 " For example, a file is in a target might be compiled twice:\n" \ |
| 97 " once in the default toolchain and once in a secondary one. Without\n" \ | 101 " once in the default toolchain and once in a secondary one. Without\n" \ |
| 98 " this flag, only the default toolchain one will be matched by\n" \ | 102 " this flag, only the default toolchain one will be matched by\n" \ |
| 99 " wildcards. With this flag, both will be matched.\n" | 103 " wildcards. With this flag, both will be matched.\n" |
| 100 | 104 |
| 101 } // namespace switches | 105 } // namespace switches |
| 102 | 106 |
| 103 #endif // TOOLS_GN_SWITCHES_H_ | 107 #endif // TOOLS_GN_SWITCHES_H_ |
| OLD | NEW |