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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 extern const char kDirectDependentConfigs_Help[]; | 120 extern const char kDirectDependentConfigs_Help[]; |
121 | 121 |
122 extern const char kExternal[]; | 122 extern const char kExternal[]; |
123 extern const char kExternal_HelpShort[]; | 123 extern const char kExternal_HelpShort[]; |
124 extern const char kExternal_Help[]; | 124 extern const char kExternal_Help[]; |
125 | 125 |
126 extern const char kForwardDependentConfigsFrom[]; | 126 extern const char kForwardDependentConfigsFrom[]; |
127 extern const char kForwardDependentConfigsFrom_HelpShort[]; | 127 extern const char kForwardDependentConfigsFrom_HelpShort[]; |
128 extern const char kForwardDependentConfigsFrom_Help[]; | 128 extern const char kForwardDependentConfigsFrom_Help[]; |
129 | 129 |
| 130 extern const char kGypFile[]; |
| 131 extern const char kGypFile_HelpShort[]; |
| 132 extern const char kGypFile_Help[]; |
| 133 |
130 extern const char kHardDep[]; | 134 extern const char kHardDep[]; |
131 extern const char kHardDep_HelpShort[]; | 135 extern const char kHardDep_HelpShort[]; |
132 extern const char kHardDep_Help[]; | 136 extern const char kHardDep_Help[]; |
133 | 137 |
134 extern const char kIncludeDirs[]; | 138 extern const char kIncludeDirs[]; |
135 extern const char kIncludeDirs_HelpShort[]; | 139 extern const char kIncludeDirs_HelpShort[]; |
136 extern const char kIncludeDirs_Help[]; | 140 extern const char kIncludeDirs_Help[]; |
137 | 141 |
138 extern const char kLdflags[]; | 142 extern const char kLdflags[]; |
139 extern const char kLdflags_HelpShort[]; | 143 extern const char kLdflags_HelpShort[]; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 // Note: this is used only for help so this getter is not threadsafe. | 188 // Note: this is used only for help so this getter is not threadsafe. |
185 const VariableInfoMap& GetBuiltinVariables(); | 189 const VariableInfoMap& GetBuiltinVariables(); |
186 | 190 |
187 // Returns the variables used by target generators. | 191 // Returns the variables used by target generators. |
188 // Note: this is used only for help so this getter is not threadsafe. | 192 // Note: this is used only for help so this getter is not threadsafe. |
189 const VariableInfoMap& GetTargetVariables(); | 193 const VariableInfoMap& GetTargetVariables(); |
190 | 194 |
191 } // namespace variables | 195 } // namespace variables |
192 | 196 |
193 #endif // TOOLS_GN_VARIABLES_H_ | 197 #endif // TOOLS_GN_VARIABLES_H_ |
OLD | NEW |