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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 extern const char kOutputName_Help[]; | 228 extern const char kOutputName_Help[]; |
229 | 229 |
230 extern const char kOutputPrefixOverride[]; | 230 extern const char kOutputPrefixOverride[]; |
231 extern const char kOutputPrefixOverride_HelpShort[]; | 231 extern const char kOutputPrefixOverride_HelpShort[]; |
232 extern const char kOutputPrefixOverride_Help[]; | 232 extern const char kOutputPrefixOverride_Help[]; |
233 | 233 |
234 extern const char kOutputs[]; | 234 extern const char kOutputs[]; |
235 extern const char kOutputs_HelpShort[]; | 235 extern const char kOutputs_HelpShort[]; |
236 extern const char kOutputs_Help[]; | 236 extern const char kOutputs_Help[]; |
237 | 237 |
| 238 extern const char kPool[]; |
| 239 extern const char kPool_HelpShort[]; |
| 240 extern const char kPool_Help[]; |
| 241 |
238 extern const char kPrecompiledHeader[]; | 242 extern const char kPrecompiledHeader[]; |
239 extern const char kPrecompiledHeader_HelpShort[]; | 243 extern const char kPrecompiledHeader_HelpShort[]; |
240 extern const char kPrecompiledHeader_Help[]; | 244 extern const char kPrecompiledHeader_Help[]; |
241 | 245 |
242 extern const char kPrecompiledHeaderType[]; | 246 extern const char kPrecompiledHeaderType[]; |
243 extern const char kPrecompiledHeaderType_HelpShort[]; | 247 extern const char kPrecompiledHeaderType_HelpShort[]; |
244 extern const char kPrecompiledHeaderType_Help[]; | 248 extern const char kPrecompiledHeaderType_Help[]; |
245 | 249 |
246 extern const char kPrecompiledSource[]; | 250 extern const char kPrecompiledSource[]; |
247 extern const char kPrecompiledSource_HelpShort[]; | 251 extern const char kPrecompiledSource_HelpShort[]; |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 // Note: this is used only for help so this getter is not threadsafe. | 308 // Note: this is used only for help so this getter is not threadsafe. |
305 const VariableInfoMap& GetBuiltinVariables(); | 309 const VariableInfoMap& GetBuiltinVariables(); |
306 | 310 |
307 // Returns the variables used by target generators. | 311 // Returns the variables used by target generators. |
308 // Note: this is used only for help so this getter is not threadsafe. | 312 // Note: this is used only for help so this getter is not threadsafe. |
309 const VariableInfoMap& GetTargetVariables(); | 313 const VariableInfoMap& GetTargetVariables(); |
310 | 314 |
311 } // namespace variables | 315 } // namespace variables |
312 | 316 |
313 #endif // TOOLS_GN_VARIABLES_H_ | 317 #endif // TOOLS_GN_VARIABLES_H_ |
OLD | NEW |