| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 extern const char kOutputExtension_Help[]; | 152 extern const char kOutputExtension_Help[]; |
| 153 | 153 |
| 154 extern const char kOutputName[]; | 154 extern const char kOutputName[]; |
| 155 extern const char kOutputName_HelpShort[]; | 155 extern const char kOutputName_HelpShort[]; |
| 156 extern const char kOutputName_Help[]; | 156 extern const char kOutputName_Help[]; |
| 157 | 157 |
| 158 extern const char kOutputs[]; | 158 extern const char kOutputs[]; |
| 159 extern const char kOutputs_HelpShort[]; | 159 extern const char kOutputs_HelpShort[]; |
| 160 extern const char kOutputs_Help[]; | 160 extern const char kOutputs_Help[]; |
| 161 | 161 |
| 162 extern const char kPublic[]; |
| 163 extern const char kPublic_HelpShort[]; |
| 164 extern const char kPublic_Help[]; |
| 165 |
| 162 extern const char kScript[]; | 166 extern const char kScript[]; |
| 163 extern const char kScript_HelpShort[]; | 167 extern const char kScript_HelpShort[]; |
| 164 extern const char kScript_Help[]; | 168 extern const char kScript_Help[]; |
| 165 | 169 |
| 166 extern const char kSourcePrereqs[]; | 170 extern const char kSourcePrereqs[]; |
| 167 extern const char kSourcePrereqs_HelpShort[]; | 171 extern const char kSourcePrereqs_HelpShort[]; |
| 168 extern const char kSourcePrereqs_Help[]; | 172 extern const char kSourcePrereqs_Help[]; |
| 169 | 173 |
| 170 extern const char kSources[]; | 174 extern const char kSources[]; |
| 171 extern const char kSources_HelpShort[]; | 175 extern const char kSources_HelpShort[]; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 192 // Note: this is used only for help so this getter is not threadsafe. | 196 // Note: this is used only for help so this getter is not threadsafe. |
| 193 const VariableInfoMap& GetBuiltinVariables(); | 197 const VariableInfoMap& GetBuiltinVariables(); |
| 194 | 198 |
| 195 // Returns the variables used by target generators. | 199 // Returns the variables used by target generators. |
| 196 // Note: this is used only for help so this getter is not threadsafe. | 200 // Note: this is used only for help so this getter is not threadsafe. |
| 197 const VariableInfoMap& GetTargetVariables(); | 201 const VariableInfoMap& GetTargetVariables(); |
| 198 | 202 |
| 199 } // namespace variables | 203 } // namespace variables |
| 200 | 204 |
| 201 #endif // TOOLS_GN_VARIABLES_H_ | 205 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |