| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 // Target vars ----------------------------------------------------------------- | 72 // Target vars ----------------------------------------------------------------- |
| 73 | 73 |
| 74 extern const char kAllDependentConfigs[]; | 74 extern const char kAllDependentConfigs[]; |
| 75 extern const char kAllDependentConfigs_HelpShort[]; | 75 extern const char kAllDependentConfigs_HelpShort[]; |
| 76 extern const char kAllDependentConfigs_Help[]; | 76 extern const char kAllDependentConfigs_Help[]; |
| 77 | 77 |
| 78 extern const char kAllowCircularIncludesFrom[]; | 78 extern const char kAllowCircularIncludesFrom[]; |
| 79 extern const char kAllowCircularIncludesFrom_HelpShort[]; | 79 extern const char kAllowCircularIncludesFrom_HelpShort[]; |
| 80 extern const char kAllowCircularIncludesFrom_Help[]; | 80 extern const char kAllowCircularIncludesFrom_Help[]; |
| 81 | 81 |
| 82 extern const char kArflags[]; |
| 83 extern const char kArflags_HelpShort[]; |
| 84 extern const char kArflags_Help[]; |
| 85 |
| 82 extern const char kArgs[]; | 86 extern const char kArgs[]; |
| 83 extern const char kArgs_HelpShort[]; | 87 extern const char kArgs_HelpShort[]; |
| 84 extern const char kArgs_Help[]; | 88 extern const char kArgs_Help[]; |
| 85 | 89 |
| 86 extern const char kAsmflags[]; | 90 extern const char kAsmflags[]; |
| 87 extern const char kAsmflags_HelpShort[]; | 91 extern const char kAsmflags_HelpShort[]; |
| 88 extern const char* kAsmflags_Help; | 92 extern const char* kAsmflags_Help; |
| 89 | 93 |
| 90 extern const char kAssertNoDeps[]; | 94 extern const char kAssertNoDeps[]; |
| 91 extern const char kAssertNoDeps_HelpShort[]; | 95 extern const char kAssertNoDeps_HelpShort[]; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 // Note: this is used only for help so this getter is not threadsafe. | 268 // Note: this is used only for help so this getter is not threadsafe. |
| 265 const VariableInfoMap& GetBuiltinVariables(); | 269 const VariableInfoMap& GetBuiltinVariables(); |
| 266 | 270 |
| 267 // Returns the variables used by target generators. | 271 // Returns the variables used by target generators. |
| 268 // Note: this is used only for help so this getter is not threadsafe. | 272 // Note: this is used only for help so this getter is not threadsafe. |
| 269 const VariableInfoMap& GetTargetVariables(); | 273 const VariableInfoMap& GetTargetVariables(); |
| 270 | 274 |
| 271 } // namespace variables | 275 } // namespace variables |
| 272 | 276 |
| 273 #endif // TOOLS_GN_VARIABLES_H_ | 277 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |