| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 extern const char kLibs_Help[]; | 184 extern const char kLibs_Help[]; |
| 185 | 185 |
| 186 extern const char kOutputExtension[]; | 186 extern const char kOutputExtension[]; |
| 187 extern const char kOutputExtension_HelpShort[]; | 187 extern const char kOutputExtension_HelpShort[]; |
| 188 extern const char kOutputExtension_Help[]; | 188 extern const char kOutputExtension_Help[]; |
| 189 | 189 |
| 190 extern const char kOutputName[]; | 190 extern const char kOutputName[]; |
| 191 extern const char kOutputName_HelpShort[]; | 191 extern const char kOutputName_HelpShort[]; |
| 192 extern const char kOutputName_Help[]; | 192 extern const char kOutputName_Help[]; |
| 193 | 193 |
| 194 extern const char kOutputPrefixOverride[]; |
| 195 extern const char kOutputPrefixOverride_HelpShort[]; |
| 196 extern const char kOutputPrefixOverride_Help[]; |
| 197 |
| 194 extern const char kOutputs[]; | 198 extern const char kOutputs[]; |
| 195 extern const char kOutputs_HelpShort[]; | 199 extern const char kOutputs_HelpShort[]; |
| 196 extern const char kOutputs_Help[]; | 200 extern const char kOutputs_Help[]; |
| 197 | 201 |
| 198 extern const char kPrecompiledHeader[]; | 202 extern const char kPrecompiledHeader[]; |
| 199 extern const char kPrecompiledHeader_HelpShort[]; | 203 extern const char kPrecompiledHeader_HelpShort[]; |
| 200 extern const char kPrecompiledHeader_Help[]; | 204 extern const char kPrecompiledHeader_Help[]; |
| 201 | 205 |
| 202 extern const char kPrecompiledSource[]; | 206 extern const char kPrecompiledSource[]; |
| 203 extern const char kPrecompiledSource_HelpShort[]; | 207 extern const char kPrecompiledSource_HelpShort[]; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 // Note: this is used only for help so this getter is not threadsafe. | 260 // Note: this is used only for help so this getter is not threadsafe. |
| 257 const VariableInfoMap& GetBuiltinVariables(); | 261 const VariableInfoMap& GetBuiltinVariables(); |
| 258 | 262 |
| 259 // Returns the variables used by target generators. | 263 // Returns the variables used by target generators. |
| 260 // Note: this is used only for help so this getter is not threadsafe. | 264 // Note: this is used only for help so this getter is not threadsafe. |
| 261 const VariableInfoMap& GetTargetVariables(); | 265 const VariableInfoMap& GetTargetVariables(); |
| 262 | 266 |
| 263 } // namespace variables | 267 } // namespace variables |
| 264 | 268 |
| 265 #endif // TOOLS_GN_VARIABLES_H_ | 269 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |