| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 extern const char kDepfile_Help[]; | 116 extern const char kDepfile_Help[]; |
| 117 | 117 |
| 118 extern const char kDeps[]; | 118 extern const char kDeps[]; |
| 119 extern const char kDeps_HelpShort[]; | 119 extern const char kDeps_HelpShort[]; |
| 120 extern const char kDeps_Help[]; | 120 extern const char kDeps_Help[]; |
| 121 | 121 |
| 122 extern const char kDirectDependentConfigs[]; | 122 extern const char kDirectDependentConfigs[]; |
| 123 extern const char kDirectDependentConfigs_HelpShort[]; | 123 extern const char kDirectDependentConfigs_HelpShort[]; |
| 124 extern const char kDirectDependentConfigs_Help[]; | 124 extern const char kDirectDependentConfigs_Help[]; |
| 125 | 125 |
| 126 extern const char kExternal[]; | |
| 127 extern const char kExternal_HelpShort[]; | |
| 128 extern const char kExternal_Help[]; | |
| 129 | |
| 130 extern const char kForwardDependentConfigsFrom[]; | 126 extern const char kForwardDependentConfigsFrom[]; |
| 131 extern const char kForwardDependentConfigsFrom_HelpShort[]; | 127 extern const char kForwardDependentConfigsFrom_HelpShort[]; |
| 132 extern const char kForwardDependentConfigsFrom_Help[]; | 128 extern const char kForwardDependentConfigsFrom_Help[]; |
| 133 | 129 |
| 134 extern const char kGypFile[]; | |
| 135 extern const char kGypFile_HelpShort[]; | |
| 136 extern const char kGypFile_Help[]; | |
| 137 | |
| 138 extern const char kGypHeader[]; | |
| 139 extern const char kGypHeader_HelpShort[]; | |
| 140 extern const char kGypHeader_Help[]; | |
| 141 | |
| 142 extern const char kHardDep[]; | 130 extern const char kHardDep[]; |
| 143 extern const char kHardDep_HelpShort[]; | 131 extern const char kHardDep_HelpShort[]; |
| 144 extern const char kHardDep_Help[]; | 132 extern const char kHardDep_Help[]; |
| 145 | 133 |
| 146 extern const char kIncludeDirs[]; | 134 extern const char kIncludeDirs[]; |
| 147 extern const char kIncludeDirs_HelpShort[]; | 135 extern const char kIncludeDirs_HelpShort[]; |
| 148 extern const char kIncludeDirs_Help[]; | 136 extern const char kIncludeDirs_Help[]; |
| 149 | 137 |
| 150 extern const char kLdflags[]; | 138 extern const char kLdflags[]; |
| 151 extern const char kLdflags_HelpShort[]; | 139 extern const char kLdflags_HelpShort[]; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 // 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. |
| 201 const VariableInfoMap& GetBuiltinVariables(); | 189 const VariableInfoMap& GetBuiltinVariables(); |
| 202 | 190 |
| 203 // Returns the variables used by target generators. | 191 // Returns the variables used by target generators. |
| 204 // 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. |
| 205 const VariableInfoMap& GetTargetVariables(); | 193 const VariableInfoMap& GetTargetVariables(); |
| 206 | 194 |
| 207 } // namespace variables | 195 } // namespace variables |
| 208 | 196 |
| 209 #endif // TOOLS_GN_VARIABLES_H_ | 197 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |