| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 extern const char kArgs_Help[]; | 84 extern const char kArgs_Help[]; |
| 85 | 85 |
| 86 extern const char kAsmflags[]; | 86 extern const char kAsmflags[]; |
| 87 extern const char kAsmflags_HelpShort[]; | 87 extern const char kAsmflags_HelpShort[]; |
| 88 extern const char* kAsmflags_Help; | 88 extern const char* kAsmflags_Help; |
| 89 | 89 |
| 90 extern const char kAssertNoDeps[]; | 90 extern const char kAssertNoDeps[]; |
| 91 extern const char kAssertNoDeps_HelpShort[]; | 91 extern const char kAssertNoDeps_HelpShort[]; |
| 92 extern const char kAssertNoDeps_Help[]; | 92 extern const char kAssertNoDeps_Help[]; |
| 93 | 93 |
| 94 extern const char kBundleData[]; |
| 95 extern const char kBundleData_HelpShort[]; |
| 96 extern const char kBundleData_Help[]; |
| 97 |
| 98 extern const char kBundleDataFilter[]; |
| 99 extern const char kBundleDataFilter_HelpShort[]; |
| 100 extern const char kBundleDataFilter_Help[]; |
| 101 |
| 94 extern const char kCflags[]; | 102 extern const char kCflags[]; |
| 95 extern const char kCflags_HelpShort[]; | 103 extern const char kCflags_HelpShort[]; |
| 96 extern const char* kCflags_Help; | 104 extern const char* kCflags_Help; |
| 97 | 105 |
| 98 extern const char kCflagsC[]; | 106 extern const char kCflagsC[]; |
| 99 extern const char kCflagsC_HelpShort[]; | 107 extern const char kCflagsC_HelpShort[]; |
| 100 extern const char* kCflagsC_Help; | 108 extern const char* kCflagsC_Help; |
| 101 | 109 |
| 102 extern const char kCflagsCC[]; | 110 extern const char kCflagsCC[]; |
| 103 extern const char kCflagsCC_HelpShort[]; | 111 extern const char kCflagsCC_HelpShort[]; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 // Note: this is used only for help so this getter is not threadsafe. | 244 // Note: this is used only for help so this getter is not threadsafe. |
| 237 const VariableInfoMap& GetBuiltinVariables(); | 245 const VariableInfoMap& GetBuiltinVariables(); |
| 238 | 246 |
| 239 // Returns the variables used by target generators. | 247 // Returns the variables used by target generators. |
| 240 // Note: this is used only for help so this getter is not threadsafe. | 248 // Note: this is used only for help so this getter is not threadsafe. |
| 241 const VariableInfoMap& GetTargetVariables(); | 249 const VariableInfoMap& GetTargetVariables(); |
| 242 | 250 |
| 243 } // namespace variables | 251 } // namespace variables |
| 244 | 252 |
| 245 #endif // TOOLS_GN_VARIABLES_H_ | 253 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |