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

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

Issue 2734523002: gn: Tweak precompiled_header docs. (Closed)
Patch Set: Created 3 years, 9 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
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 extern const char kOutputPrefixOverride_Help[]; 232 extern const char kOutputPrefixOverride_Help[];
233 233
234 extern const char kOutputs[]; 234 extern const char kOutputs[];
235 extern const char kOutputs_HelpShort[]; 235 extern const char kOutputs_HelpShort[];
236 extern const char kOutputs_Help[]; 236 extern const char kOutputs_Help[];
237 237
238 extern const char kPrecompiledHeader[]; 238 extern const char kPrecompiledHeader[];
239 extern const char kPrecompiledHeader_HelpShort[]; 239 extern const char kPrecompiledHeader_HelpShort[];
240 extern const char kPrecompiledHeader_Help[]; 240 extern const char kPrecompiledHeader_Help[];
241 241
242 extern const char kPrecompiledHeaderType[];
243 extern const char kPrecompiledHeaderType_HelpShort[];
244 extern const char kPrecompiledHeaderType_Help[];
245
242 extern const char kPrecompiledSource[]; 246 extern const char kPrecompiledSource[];
243 extern const char kPrecompiledSource_HelpShort[]; 247 extern const char kPrecompiledSource_HelpShort[];
244 extern const char kPrecompiledSource_Help[]; 248 extern const char kPrecompiledSource_Help[];
245 249
246 extern const char kProductType[]; 250 extern const char kProductType[];
247 extern const char kProductType_HelpShort[]; 251 extern const char kProductType_HelpShort[];
248 extern const char kProductType_Help[]; 252 extern const char kProductType_Help[];
249 253
250 extern const char kPublic[]; 254 extern const char kPublic[];
251 extern const char kPublic_HelpShort[]; 255 extern const char kPublic_HelpShort[];
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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& GetBuiltinVariables(); 305 const VariableInfoMap& GetBuiltinVariables();
302 306
303 // Returns the variables used by target generators. 307 // Returns the variables used by target generators.
304 // Note: this is used only for help so this getter is not threadsafe. 308 // Note: this is used only for help so this getter is not threadsafe.
305 const VariableInfoMap& GetTargetVariables(); 309 const VariableInfoMap& GetTargetVariables();
306 310
307 } // namespace variables 311 } // namespace variables
308 312
309 #endif // TOOLS_GN_VARIABLES_H_ 313 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698