| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 extern const char kLdflags_Help[]; | 176 extern const char kLdflags_Help[]; |
| 177 | 177 |
| 178 extern const char kLibDirs[]; | 178 extern const char kLibDirs[]; |
| 179 extern const char kLibDirs_HelpShort[]; | 179 extern const char kLibDirs_HelpShort[]; |
| 180 extern const char kLibDirs_Help[]; | 180 extern const char kLibDirs_Help[]; |
| 181 | 181 |
| 182 extern const char kLibs[]; | 182 extern const char kLibs[]; |
| 183 extern const char kLibs_HelpShort[]; | 183 extern const char kLibs_HelpShort[]; |
| 184 extern const char kLibs_Help[]; | 184 extern const char kLibs_Help[]; |
| 185 | 185 |
| 186 extern const char kOutputDir[]; |
| 187 extern const char kOutputDir_HelpShort[]; |
| 188 extern const char kOutputDir_Help[]; |
| 189 |
| 186 extern const char kOutputExtension[]; | 190 extern const char kOutputExtension[]; |
| 187 extern const char kOutputExtension_HelpShort[]; | 191 extern const char kOutputExtension_HelpShort[]; |
| 188 extern const char kOutputExtension_Help[]; | 192 extern const char kOutputExtension_Help[]; |
| 189 | 193 |
| 190 extern const char kOutputName[]; | 194 extern const char kOutputName[]; |
| 191 extern const char kOutputName_HelpShort[]; | 195 extern const char kOutputName_HelpShort[]; |
| 192 extern const char kOutputName_Help[]; | 196 extern const char kOutputName_Help[]; |
| 193 | 197 |
| 194 extern const char kOutputPrefixOverride[]; | 198 extern const char kOutputPrefixOverride[]; |
| 195 extern const char kOutputPrefixOverride_HelpShort[]; | 199 extern const char kOutputPrefixOverride_HelpShort[]; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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& GetBuiltinVariables(); | 265 const VariableInfoMap& GetBuiltinVariables(); |
| 262 | 266 |
| 263 // Returns the variables used by target generators. | 267 // Returns the variables used by target generators. |
| 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& GetTargetVariables(); | 269 const VariableInfoMap& GetTargetVariables(); |
| 266 | 270 |
| 267 } // namespace variables | 271 } // namespace variables |
| 268 | 272 |
| 269 #endif // TOOLS_GN_VARIABLES_H_ | 273 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |