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

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

Issue 1887533003: Add an output_dir override to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: const Created 4 years, 8 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/tool.h ('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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 extern const char kLdflags_Help[]; 176 extern const char kLdflags_Help[];
177 177
178 extern const char kLibDirs[]; 178 extern const char kLibDirs[];
179 extern const char kLibDirs_HelpShort[]; 179 extern const char kLibDirs_HelpShort[];
180 extern const char kLibDirs_Help[]; 180 extern const char kLibDirs_Help[];
181 181
182 extern const char kLibs[]; 182 extern const char kLibs[];
183 extern const char kLibs_HelpShort[]; 183 extern const char kLibs_HelpShort[];
184 extern const char kLibs_Help[]; 184 extern const char kLibs_Help[];
185 185
186 extern const char kOutputDir[];
187 extern const char kOutputDir_HelpShort[];
188 extern const char kOutputDir_Help[];
189
186 extern const char kOutputExtension[]; 190 extern const char kOutputExtension[];
187 extern const char kOutputExtension_HelpShort[]; 191 extern const char kOutputExtension_HelpShort[];
188 extern const char kOutputExtension_Help[]; 192 extern const char kOutputExtension_Help[];
189 193
190 extern const char kOutputName[]; 194 extern const char kOutputName[];
191 extern const char kOutputName_HelpShort[]; 195 extern const char kOutputName_HelpShort[];
192 extern const char kOutputName_Help[]; 196 extern const char kOutputName_Help[];
193 197
194 extern const char kOutputPrefixOverride[]; 198 extern const char kOutputPrefixOverride[];
195 extern const char kOutputPrefixOverride_HelpShort[]; 199 extern const char kOutputPrefixOverride_HelpShort[];
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // Note: this is used only for help so this getter is not threadsafe. 264 // Note: this is used only for help so this getter is not threadsafe.
261 const VariableInfoMap& GetBuiltinVariables(); 265 const VariableInfoMap& GetBuiltinVariables();
262 266
263 // Returns the variables used by target generators. 267 // Returns the variables used by target generators.
264 // Note: this is used only for help so this getter is not threadsafe. 268 // Note: this is used only for help so this getter is not threadsafe.
265 const VariableInfoMap& GetTargetVariables(); 269 const VariableInfoMap& GetTargetVariables();
266 270
267 } // namespace variables 271 } // namespace variables
268 272
269 #endif // TOOLS_GN_VARIABLES_H_ 273 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/tool.h ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698