| 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 extern const char* kCflagsObjC_Help; | 128 extern const char* kCflagsObjC_Help; |
| 129 | 129 |
| 130 extern const char kCflagsObjCC[]; | 130 extern const char kCflagsObjCC[]; |
| 131 extern const char kCflagsObjCC_HelpShort[]; | 131 extern const char kCflagsObjCC_HelpShort[]; |
| 132 extern const char* kCflagsObjCC_Help; | 132 extern const char* kCflagsObjCC_Help; |
| 133 | 133 |
| 134 extern const char kCheckIncludes[]; | 134 extern const char kCheckIncludes[]; |
| 135 extern const char kCheckIncludes_HelpShort[]; | 135 extern const char kCheckIncludes_HelpShort[]; |
| 136 extern const char kCheckIncludes_Help[]; | 136 extern const char kCheckIncludes_Help[]; |
| 137 | 137 |
| 138 extern const char kCodeSigningArgs[]; |
| 139 extern const char kCodeSigningArgs_HelpShort[]; |
| 140 extern const char kCodeSigningArgs_Help[]; |
| 141 |
| 142 extern const char kCodeSigningScript[]; |
| 143 extern const char kCodeSigningScript_HelpShort[]; |
| 144 extern const char kCodeSigningScript_Help[]; |
| 145 |
| 146 extern const char kCodeSigningSources[]; |
| 147 extern const char kCodeSigningSources_HelpShort[]; |
| 148 extern const char kCodeSigningSources_Help[]; |
| 149 |
| 150 extern const char kCodeSigningOutputs[]; |
| 151 extern const char kCodeSigningOutputs_HelpShort[]; |
| 152 extern const char kCodeSigningOutputs_Help[]; |
| 153 |
| 138 extern const char kCompleteStaticLib[]; | 154 extern const char kCompleteStaticLib[]; |
| 139 extern const char kCompleteStaticLib_HelpShort[]; | 155 extern const char kCompleteStaticLib_HelpShort[]; |
| 140 extern const char kCompleteStaticLib_Help[]; | 156 extern const char kCompleteStaticLib_Help[]; |
| 141 | 157 |
| 142 extern const char kConfigs[]; | 158 extern const char kConfigs[]; |
| 143 extern const char kConfigs_HelpShort[]; | 159 extern const char kConfigs_HelpShort[]; |
| 144 extern const char kConfigs_Help[]; | 160 extern const char kConfigs_Help[]; |
| 145 | 161 |
| 146 extern const char kConsole[]; | 162 extern const char kConsole[]; |
| 147 extern const char kConsole_HelpShort[]; | 163 extern const char kConsole_HelpShort[]; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 // Note: this is used only for help so this getter is not threadsafe. | 288 // Note: this is used only for help so this getter is not threadsafe. |
| 273 const VariableInfoMap& GetBuiltinVariables(); | 289 const VariableInfoMap& GetBuiltinVariables(); |
| 274 | 290 |
| 275 // Returns the variables used by target generators. | 291 // Returns the variables used by target generators. |
| 276 // Note: this is used only for help so this getter is not threadsafe. | 292 // Note: this is used only for help so this getter is not threadsafe. |
| 277 const VariableInfoMap& GetTargetVariables(); | 293 const VariableInfoMap& GetTargetVariables(); |
| 278 | 294 |
| 279 } // namespace variables | 295 } // namespace variables |
| 280 | 296 |
| 281 #endif // TOOLS_GN_VARIABLES_H_ | 297 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |