Chromium Code Reviews| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 extern const char kDefines_Help[]; | 184 extern const char kDefines_Help[]; |
| 185 | 185 |
| 186 extern const char kDepfile[]; | 186 extern const char kDepfile[]; |
| 187 extern const char kDepfile_HelpShort[]; | 187 extern const char kDepfile_HelpShort[]; |
| 188 extern const char kDepfile_Help[]; | 188 extern const char kDepfile_Help[]; |
| 189 | 189 |
| 190 extern const char kDeps[]; | 190 extern const char kDeps[]; |
| 191 extern const char kDeps_HelpShort[]; | 191 extern const char kDeps_HelpShort[]; |
| 192 extern const char kDeps_Help[]; | 192 extern const char kDeps_Help[]; |
| 193 | 193 |
| 194 extern const char kDepsFilter[]; | |
|
brettw
2016/08/03 19:25:19
This name implies more general behavior that what
| |
| 195 extern const char kDepsFilter_HelpShort[]; | |
| 196 extern const char kDepsFilter_Help[]; | |
| 197 | |
| 194 extern const char kIncludeDirs[]; | 198 extern const char kIncludeDirs[]; |
| 195 extern const char kIncludeDirs_HelpShort[]; | 199 extern const char kIncludeDirs_HelpShort[]; |
| 196 extern const char kIncludeDirs_Help[]; | 200 extern const char kIncludeDirs_Help[]; |
| 197 | 201 |
| 198 extern const char kInputs[]; | 202 extern const char kInputs[]; |
| 199 extern const char kInputs_HelpShort[]; | 203 extern const char kInputs_HelpShort[]; |
| 200 extern const char kInputs_Help[]; | 204 extern const char kInputs_Help[]; |
| 201 | 205 |
| 202 extern const char kLdflags[]; | 206 extern const char kLdflags[]; |
| 203 extern const char kLdflags_HelpShort[]; | 207 extern const char kLdflags_HelpShort[]; |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 296 // Note: this is used only for help so this getter is not threadsafe. | 300 // Note: this is used only for help so this getter is not threadsafe. |
| 297 const VariableInfoMap& GetBuiltinVariables(); | 301 const VariableInfoMap& GetBuiltinVariables(); |
| 298 | 302 |
| 299 // Returns the variables used by target generators. | 303 // Returns the variables used by target generators. |
| 300 // Note: this is used only for help so this getter is not threadsafe. | 304 // Note: this is used only for help so this getter is not threadsafe. |
| 301 const VariableInfoMap& GetTargetVariables(); | 305 const VariableInfoMap& GetTargetVariables(); |
| 302 | 306 |
| 303 } // namespace variables | 307 } // namespace variables |
| 304 | 308 |
| 305 #endif // TOOLS_GN_VARIABLES_H_ | 309 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |