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

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

Issue 1868023002: Add GN output prefix override and allow empty output extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/target_unittest.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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 extern const char kLibs_Help[]; 184 extern const char kLibs_Help[];
185 185
186 extern const char kOutputExtension[]; 186 extern const char kOutputExtension[];
187 extern const char kOutputExtension_HelpShort[]; 187 extern const char kOutputExtension_HelpShort[];
188 extern const char kOutputExtension_Help[]; 188 extern const char kOutputExtension_Help[];
189 189
190 extern const char kOutputName[]; 190 extern const char kOutputName[];
191 extern const char kOutputName_HelpShort[]; 191 extern const char kOutputName_HelpShort[];
192 extern const char kOutputName_Help[]; 192 extern const char kOutputName_Help[];
193 193
194 extern const char kOutputPrefixOverride[];
195 extern const char kOutputPrefixOverride_HelpShort[];
196 extern const char kOutputPrefixOverride_Help[];
197
194 extern const char kOutputs[]; 198 extern const char kOutputs[];
195 extern const char kOutputs_HelpShort[]; 199 extern const char kOutputs_HelpShort[];
196 extern const char kOutputs_Help[]; 200 extern const char kOutputs_Help[];
197 201
198 extern const char kPrecompiledHeader[]; 202 extern const char kPrecompiledHeader[];
199 extern const char kPrecompiledHeader_HelpShort[]; 203 extern const char kPrecompiledHeader_HelpShort[];
200 extern const char kPrecompiledHeader_Help[]; 204 extern const char kPrecompiledHeader_Help[];
201 205
202 extern const char kPrecompiledSource[]; 206 extern const char kPrecompiledSource[];
203 extern const char kPrecompiledSource_HelpShort[]; 207 extern const char kPrecompiledSource_HelpShort[];
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 // Note: this is used only for help so this getter is not threadsafe. 260 // Note: this is used only for help so this getter is not threadsafe.
257 const VariableInfoMap& GetBuiltinVariables(); 261 const VariableInfoMap& GetBuiltinVariables();
258 262
259 // Returns the variables used by target generators. 263 // Returns the variables used by target generators.
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& GetTargetVariables(); 265 const VariableInfoMap& GetTargetVariables();
262 266
263 } // namespace variables 267 } // namespace variables
264 268
265 #endif // TOOLS_GN_VARIABLES_H_ 269 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/target_unittest.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698