| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 164 extern const char kOutputExtension_Help[]; | 164 extern const char kOutputExtension_Help[]; | 
| 165 | 165 | 
| 166 extern const char kOutputName[]; | 166 extern const char kOutputName[]; | 
| 167 extern const char kOutputName_HelpShort[]; | 167 extern const char kOutputName_HelpShort[]; | 
| 168 extern const char kOutputName_Help[]; | 168 extern const char kOutputName_Help[]; | 
| 169 | 169 | 
| 170 extern const char kOutputs[]; | 170 extern const char kOutputs[]; | 
| 171 extern const char kOutputs_HelpShort[]; | 171 extern const char kOutputs_HelpShort[]; | 
| 172 extern const char kOutputs_Help[]; | 172 extern const char kOutputs_Help[]; | 
| 173 | 173 | 
|  | 174 extern const char kPrecompiledHeader[]; | 
|  | 175 extern const char kPrecompiledHeader_HelpShort[]; | 
|  | 176 extern const char kPrecompiledHeader_Help[]; | 
|  | 177 | 
|  | 178 extern const char kPrecompiledSource[]; | 
|  | 179 extern const char kPrecompiledSource_HelpShort[]; | 
|  | 180 extern const char kPrecompiledSource_Help[]; | 
|  | 181 | 
| 174 extern const char kPublic[]; | 182 extern const char kPublic[]; | 
| 175 extern const char kPublic_HelpShort[]; | 183 extern const char kPublic_HelpShort[]; | 
| 176 extern const char kPublic_Help[]; | 184 extern const char kPublic_Help[]; | 
| 177 | 185 | 
| 178 extern const char kPublicConfigs[]; | 186 extern const char kPublicConfigs[]; | 
| 179 extern const char kPublicConfigs_HelpShort[]; | 187 extern const char kPublicConfigs_HelpShort[]; | 
| 180 extern const char kPublicConfigs_Help[]; | 188 extern const char kPublicConfigs_Help[]; | 
| 181 | 189 | 
| 182 extern const char kPublicDeps[]; | 190 extern const char kPublicDeps[]; | 
| 183 extern const char kPublicDeps_HelpShort[]; | 191 extern const char kPublicDeps_HelpShort[]; | 
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 216 // Note: this is used only for help so this getter is not threadsafe. | 224 // Note: this is used only for help so this getter is not threadsafe. | 
| 217 const VariableInfoMap& GetBuiltinVariables(); | 225 const VariableInfoMap& GetBuiltinVariables(); | 
| 218 | 226 | 
| 219 // Returns the variables used by target generators. | 227 // Returns the variables used by target generators. | 
| 220 // Note: this is used only for help so this getter is not threadsafe. | 228 // Note: this is used only for help so this getter is not threadsafe. | 
| 221 const VariableInfoMap& GetTargetVariables(); | 229 const VariableInfoMap& GetTargetVariables(); | 
| 222 | 230 | 
| 223 }  // namespace variables | 231 }  // namespace variables | 
| 224 | 232 | 
| 225 #endif  // TOOLS_GN_VARIABLES_H_ | 233 #endif  // TOOLS_GN_VARIABLES_H_ | 
| OLD | NEW | 
|---|