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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 extern const char kDefines_Help[]; | 160 extern const char kDefines_Help[]; |
161 | 161 |
162 extern const char kDepfile[]; | 162 extern const char kDepfile[]; |
163 extern const char kDepfile_HelpShort[]; | 163 extern const char kDepfile_HelpShort[]; |
164 extern const char kDepfile_Help[]; | 164 extern const char kDepfile_Help[]; |
165 | 165 |
166 extern const char kDeps[]; | 166 extern const char kDeps[]; |
167 extern const char kDeps_HelpShort[]; | 167 extern const char kDeps_HelpShort[]; |
168 extern const char kDeps_Help[]; | 168 extern const char kDeps_Help[]; |
169 | 169 |
170 extern const char kDepth[]; | |
brettw
2016/05/24 22:03:31
This is never used or defined. I think it's OK not
sdefresne
2016/05/26 15:38:37
Ack.
| |
171 extern const char kDepth_HelpShort[]; | |
172 extern const char kDepth_Help[]; | |
173 | |
170 extern const char kIncludeDirs[]; | 174 extern const char kIncludeDirs[]; |
171 extern const char kIncludeDirs_HelpShort[]; | 175 extern const char kIncludeDirs_HelpShort[]; |
172 extern const char kIncludeDirs_Help[]; | 176 extern const char kIncludeDirs_Help[]; |
173 | 177 |
174 extern const char kInputs[]; | 178 extern const char kInputs[]; |
175 extern const char kInputs_HelpShort[]; | 179 extern const char kInputs_HelpShort[]; |
176 extern const char kInputs_Help[]; | 180 extern const char kInputs_Help[]; |
177 | 181 |
178 extern const char kLdflags[]; | 182 extern const char kLdflags[]; |
179 extern const char kLdflags_HelpShort[]; | 183 extern const char kLdflags_HelpShort[]; |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
272 // Note: this is used only for help so this getter is not threadsafe. | 276 // Note: this is used only for help so this getter is not threadsafe. |
273 const VariableInfoMap& GetBuiltinVariables(); | 277 const VariableInfoMap& GetBuiltinVariables(); |
274 | 278 |
275 // Returns the variables used by target generators. | 279 // Returns the variables used by target generators. |
276 // Note: this is used only for help so this getter is not threadsafe. | 280 // Note: this is used only for help so this getter is not threadsafe. |
277 const VariableInfoMap& GetTargetVariables(); | 281 const VariableInfoMap& GetTargetVariables(); |
278 | 282 |
279 } // namespace variables | 283 } // namespace variables |
280 | 284 |
281 #endif // TOOLS_GN_VARIABLES_H_ | 285 #endif // TOOLS_GN_VARIABLES_H_ |
OLD | NEW |