| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 extern const char kData_Help[]; | 104 extern const char kData_Help[]; |
| 105 | 105 |
| 106 extern const char kDatadeps[]; | 106 extern const char kDatadeps[]; |
| 107 extern const char kDatadeps_HelpShort[]; | 107 extern const char kDatadeps_HelpShort[]; |
| 108 extern const char kDatadeps_Help[]; | 108 extern const char kDatadeps_Help[]; |
| 109 | 109 |
| 110 extern const char kDefines[]; | 110 extern const char kDefines[]; |
| 111 extern const char kDefines_HelpShort[]; | 111 extern const char kDefines_HelpShort[]; |
| 112 extern const char kDefines_Help[]; | 112 extern const char kDefines_Help[]; |
| 113 | 113 |
| 114 extern const char kDepfile[]; |
| 115 extern const char kDepfile_HelpShort[]; |
| 116 extern const char kDepfile_Help[]; |
| 117 |
| 114 extern const char kDeps[]; | 118 extern const char kDeps[]; |
| 115 extern const char kDeps_HelpShort[]; | 119 extern const char kDeps_HelpShort[]; |
| 116 extern const char kDeps_Help[]; | 120 extern const char kDeps_Help[]; |
| 117 | 121 |
| 118 extern const char kDirectDependentConfigs[]; | 122 extern const char kDirectDependentConfigs[]; |
| 119 extern const char kDirectDependentConfigs_HelpShort[]; | 123 extern const char kDirectDependentConfigs_HelpShort[]; |
| 120 extern const char kDirectDependentConfigs_Help[]; | 124 extern const char kDirectDependentConfigs_Help[]; |
| 121 | 125 |
| 122 extern const char kExternal[]; | 126 extern const char kExternal[]; |
| 123 extern const char kExternal_HelpShort[]; | 127 extern const char kExternal_HelpShort[]; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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& GetBuiltinVariables(); | 193 const VariableInfoMap& GetBuiltinVariables(); |
| 190 | 194 |
| 191 // Returns the variables used by target generators. | 195 // Returns the variables used by target generators. |
| 192 // Note: this is used only for help so this getter is not threadsafe. | 196 // Note: this is used only for help so this getter is not threadsafe. |
| 193 const VariableInfoMap& GetTargetVariables(); | 197 const VariableInfoMap& GetTargetVariables(); |
| 194 | 198 |
| 195 } // namespace variables | 199 } // namespace variables |
| 196 | 200 |
| 197 #endif // TOOLS_GN_VARIABLES_H_ | 201 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |