| 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 22 matching lines...) Expand all Loading... |
| 33 extern const char kArgs_Help[]; | 33 extern const char kArgs_Help[]; |
| 34 | 34 |
| 35 extern const char kColor[]; | 35 extern const char kColor[]; |
| 36 extern const char kColor_HelpShort[]; | 36 extern const char kColor_HelpShort[]; |
| 37 extern const char kColor_Help[]; | 37 extern const char kColor_Help[]; |
| 38 | 38 |
| 39 extern const char kDotfile[]; | 39 extern const char kDotfile[]; |
| 40 extern const char kDotfile_HelpShort[]; | 40 extern const char kDotfile_HelpShort[]; |
| 41 extern const char kDotfile_Help[]; | 41 extern const char kDotfile_Help[]; |
| 42 | 42 |
| 43 extern const char kMarkdown[]; |
| 44 extern const char kMarkdown_HelpShort[]; |
| 45 extern const char kMarkdown_Help[]; |
| 46 |
| 43 extern const char kNoColor[]; | 47 extern const char kNoColor[]; |
| 44 extern const char kNoColor_HelpShort[]; | 48 extern const char kNoColor_HelpShort[]; |
| 45 extern const char kNoColor_Help[]; | 49 extern const char kNoColor_Help[]; |
| 46 | 50 |
| 47 extern const char kQuiet[]; | 51 extern const char kQuiet[]; |
| 48 extern const char kQuiet_HelpShort[]; | 52 extern const char kQuiet_HelpShort[]; |
| 49 extern const char kQuiet_Help[]; | 53 extern const char kQuiet_Help[]; |
| 50 | 54 |
| 51 extern const char kRoot[]; | 55 extern const char kRoot[]; |
| 52 extern const char kRoot_HelpShort[]; | 56 extern const char kRoot_HelpShort[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 68 extern const char kVerbose_HelpShort[]; | 72 extern const char kVerbose_HelpShort[]; |
| 69 extern const char kVerbose_Help[]; | 73 extern const char kVerbose_Help[]; |
| 70 | 74 |
| 71 extern const char kVersion[]; | 75 extern const char kVersion[]; |
| 72 extern const char kVersion_HelpShort[]; | 76 extern const char kVersion_HelpShort[]; |
| 73 extern const char kVersion_Help[]; | 77 extern const char kVersion_Help[]; |
| 74 | 78 |
| 75 } // namespace switches | 79 } // namespace switches |
| 76 | 80 |
| 77 #endif // TOOLS_GN_SWITCHES_H_ | 81 #endif // TOOLS_GN_SWITCHES_H_ |
| OLD | NEW |