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

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

Issue 2926013002: Support explicit pools in actions (Closed)
Patch Set: Remove console altogether Created 3 years, 5 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/toolchain.cc ('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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 extern const char kCodeSigningOutputs_Help[]; 164 extern const char kCodeSigningOutputs_Help[];
165 165
166 extern const char kCompleteStaticLib[]; 166 extern const char kCompleteStaticLib[];
167 extern const char kCompleteStaticLib_HelpShort[]; 167 extern const char kCompleteStaticLib_HelpShort[];
168 extern const char kCompleteStaticLib_Help[]; 168 extern const char kCompleteStaticLib_Help[];
169 169
170 extern const char kConfigs[]; 170 extern const char kConfigs[];
171 extern const char kConfigs_HelpShort[]; 171 extern const char kConfigs_HelpShort[];
172 extern const char kConfigs_Help[]; 172 extern const char kConfigs_Help[];
173 173
174 extern const char kConsole[];
175 extern const char kConsole_HelpShort[];
176 extern const char kConsole_Help[];
177
178 extern const char kData[]; 174 extern const char kData[];
179 extern const char kData_HelpShort[]; 175 extern const char kData_HelpShort[];
180 extern const char kData_Help[]; 176 extern const char kData_Help[];
181 177
182 extern const char kDataDeps[]; 178 extern const char kDataDeps[];
183 extern const char kDataDeps_HelpShort[]; 179 extern const char kDataDeps_HelpShort[];
184 extern const char kDataDeps_Help[]; 180 extern const char kDataDeps_Help[];
185 181
186 extern const char kDefines[]; 182 extern const char kDefines[];
187 extern const char kDefines_HelpShort[]; 183 extern const char kDefines_HelpShort[];
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 extern const char kOutputName_Help[]; 224 extern const char kOutputName_Help[];
229 225
230 extern const char kOutputPrefixOverride[]; 226 extern const char kOutputPrefixOverride[];
231 extern const char kOutputPrefixOverride_HelpShort[]; 227 extern const char kOutputPrefixOverride_HelpShort[];
232 extern const char kOutputPrefixOverride_Help[]; 228 extern const char kOutputPrefixOverride_Help[];
233 229
234 extern const char kOutputs[]; 230 extern const char kOutputs[];
235 extern const char kOutputs_HelpShort[]; 231 extern const char kOutputs_HelpShort[];
236 extern const char kOutputs_Help[]; 232 extern const char kOutputs_Help[];
237 233
234 extern const char kPool[];
235 extern const char kPool_HelpShort[];
236 extern const char kPool_Help[];
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[]; 242 extern const char kPrecompiledHeaderType[];
243 extern const char kPrecompiledHeaderType_HelpShort[]; 243 extern const char kPrecompiledHeaderType_HelpShort[];
244 extern const char kPrecompiledHeaderType_Help[]; 244 extern const char kPrecompiledHeaderType_Help[];
245 245
246 extern const char kPrecompiledSource[]; 246 extern const char kPrecompiledSource[];
247 extern const char kPrecompiledSource_HelpShort[]; 247 extern const char kPrecompiledSource_HelpShort[];
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 // 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.
305 const VariableInfoMap& GetBuiltinVariables(); 305 const VariableInfoMap& GetBuiltinVariables();
306 306
307 // Returns the variables used by target generators. 307 // Returns the variables used by target generators.
308 // 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.
309 const VariableInfoMap& GetTargetVariables(); 309 const VariableInfoMap& GetTargetVariables();
310 310
311 } // namespace variables 311 } // namespace variables
312 312
313 #endif // TOOLS_GN_VARIABLES_H_ 313 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/toolchain.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698