| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 extern const char kLdflags_Help[]; | 208 extern const char kLdflags_Help[]; |
| 209 | 209 |
| 210 extern const char kLibDirs[]; | 210 extern const char kLibDirs[]; |
| 211 extern const char kLibDirs_HelpShort[]; | 211 extern const char kLibDirs_HelpShort[]; |
| 212 extern const char kLibDirs_Help[]; | 212 extern const char kLibDirs_Help[]; |
| 213 | 213 |
| 214 extern const char kLibs[]; | 214 extern const char kLibs[]; |
| 215 extern const char kLibs_HelpShort[]; | 215 extern const char kLibs_HelpShort[]; |
| 216 extern const char kLibs_Help[]; | 216 extern const char kLibs_Help[]; |
| 217 | 217 |
| 218 extern const char kLinkedDeps[]; |
| 219 extern const char kLinkedDeps_HelpShort[]; |
| 220 extern const char kLinkedDeps_Help[]; |
| 221 |
| 218 extern const char kOutputDir[]; | 222 extern const char kOutputDir[]; |
| 219 extern const char kOutputDir_HelpShort[]; | 223 extern const char kOutputDir_HelpShort[]; |
| 220 extern const char kOutputDir_Help[]; | 224 extern const char kOutputDir_Help[]; |
| 221 | 225 |
| 222 extern const char kOutputExtension[]; | 226 extern const char kOutputExtension[]; |
| 223 extern const char kOutputExtension_HelpShort[]; | 227 extern const char kOutputExtension_HelpShort[]; |
| 224 extern const char kOutputExtension_Help[]; | 228 extern const char kOutputExtension_Help[]; |
| 225 | 229 |
| 226 extern const char kOutputName[]; | 230 extern const char kOutputName[]; |
| 227 extern const char kOutputName_HelpShort[]; | 231 extern const char kOutputName_HelpShort[]; |
| (...skipping 76 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 |