| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_VARIABLES_H_ | 5 #ifndef TOOLS_GN_VARIABLES_H_ |
| 6 #define TOOLS_GN_VARIABLES_H_ | 6 #define TOOLS_GN_VARIABLES_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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 extern const char kCheckIncludes_Help[]; | 124 extern const char kCheckIncludes_Help[]; |
| 125 | 125 |
| 126 extern const char kCompleteStaticLib[]; | 126 extern const char kCompleteStaticLib[]; |
| 127 extern const char kCompleteStaticLib_HelpShort[]; | 127 extern const char kCompleteStaticLib_HelpShort[]; |
| 128 extern const char kCompleteStaticLib_Help[]; | 128 extern const char kCompleteStaticLib_Help[]; |
| 129 | 129 |
| 130 extern const char kConfigs[]; | 130 extern const char kConfigs[]; |
| 131 extern const char kConfigs_HelpShort[]; | 131 extern const char kConfigs_HelpShort[]; |
| 132 extern const char kConfigs_Help[]; | 132 extern const char kConfigs_Help[]; |
| 133 | 133 |
| 134 extern const char kConsole[]; |
| 135 extern const char kConsole_HelpShort[]; |
| 136 extern const char kConsole_Help[]; |
| 137 |
| 134 extern const char kData[]; | 138 extern const char kData[]; |
| 135 extern const char kData_HelpShort[]; | 139 extern const char kData_HelpShort[]; |
| 136 extern const char kData_Help[]; | 140 extern const char kData_Help[]; |
| 137 | 141 |
| 138 extern const char kDataDeps[]; | 142 extern const char kDataDeps[]; |
| 139 extern const char kDataDeps_HelpShort[]; | 143 extern const char kDataDeps_HelpShort[]; |
| 140 extern const char kDataDeps_Help[]; | 144 extern const char kDataDeps_Help[]; |
| 141 | 145 |
| 142 extern const char kDefines[]; | 146 extern const char kDefines[]; |
| 143 extern const char kDefines_HelpShort[]; | 147 extern const char kDefines_HelpShort[]; |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 // Note: this is used only for help so this getter is not threadsafe. | 244 // Note: this is used only for help so this getter is not threadsafe. |
| 241 const VariableInfoMap& GetBuiltinVariables(); | 245 const VariableInfoMap& GetBuiltinVariables(); |
| 242 | 246 |
| 243 // Returns the variables used by target generators. | 247 // Returns the variables used by target generators. |
| 244 // Note: this is used only for help so this getter is not threadsafe. | 248 // Note: this is used only for help so this getter is not threadsafe. |
| 245 const VariableInfoMap& GetTargetVariables(); | 249 const VariableInfoMap& GetTargetVariables(); |
| 246 | 250 |
| 247 } // namespace variables | 251 } // namespace variables |
| 248 | 252 |
| 249 #endif // TOOLS_GN_VARIABLES_H_ | 253 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |