Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: tools/gn/variables.h

Issue 1827103005: [GN] Add support for generating Xcode projects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improve comment about "assert(product_type != "")" Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/gn/gn.gyp ('k') | tools/gn/variables.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 extern const char kOutputs_Help[]; 208 extern const char kOutputs_Help[];
209 209
210 extern const char kPrecompiledHeader[]; 210 extern const char kPrecompiledHeader[];
211 extern const char kPrecompiledHeader_HelpShort[]; 211 extern const char kPrecompiledHeader_HelpShort[];
212 extern const char kPrecompiledHeader_Help[]; 212 extern const char kPrecompiledHeader_Help[];
213 213
214 extern const char kPrecompiledSource[]; 214 extern const char kPrecompiledSource[];
215 extern const char kPrecompiledSource_HelpShort[]; 215 extern const char kPrecompiledSource_HelpShort[];
216 extern const char kPrecompiledSource_Help[]; 216 extern const char kPrecompiledSource_Help[];
217 217
218 extern const char kProductType[];
219 extern const char kProductType_HelpShort[];
220 extern const char kProductType_Help[];
221
218 extern const char kPublic[]; 222 extern const char kPublic[];
219 extern const char kPublic_HelpShort[]; 223 extern const char kPublic_HelpShort[];
220 extern const char kPublic_Help[]; 224 extern const char kPublic_Help[];
221 225
222 extern const char kPublicConfigs[]; 226 extern const char kPublicConfigs[];
223 extern const char kPublicConfigs_HelpShort[]; 227 extern const char kPublicConfigs_HelpShort[];
224 extern const char kPublicConfigs_Help[]; 228 extern const char kPublicConfigs_Help[];
225 229
226 extern const char kPublicDeps[]; 230 extern const char kPublicDeps[];
227 extern const char kPublicDeps_HelpShort[]; 231 extern const char kPublicDeps_HelpShort[];
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 // Note: this is used only for help so this getter is not threadsafe. 272 // Note: this is used only for help so this getter is not threadsafe.
269 const VariableInfoMap& GetBuiltinVariables(); 273 const VariableInfoMap& GetBuiltinVariables();
270 274
271 // Returns the variables used by target generators. 275 // Returns the variables used by target generators.
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& GetTargetVariables(); 277 const VariableInfoMap& GetTargetVariables();
274 278
275 } // namespace variables 279 } // namespace variables
276 280
277 #endif // TOOLS_GN_VARIABLES_H_ 281 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/gn.gyp ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698