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

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

Issue 1430043002: Support script response files in GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment, random build fix Created 5 years, 1 month 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/substitution_writer.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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 extern const char kPublic_Help[]; 188 extern const char kPublic_Help[];
189 189
190 extern const char kPublicConfigs[]; 190 extern const char kPublicConfigs[];
191 extern const char kPublicConfigs_HelpShort[]; 191 extern const char kPublicConfigs_HelpShort[];
192 extern const char kPublicConfigs_Help[]; 192 extern const char kPublicConfigs_Help[];
193 193
194 extern const char kPublicDeps[]; 194 extern const char kPublicDeps[];
195 extern const char kPublicDeps_HelpShort[]; 195 extern const char kPublicDeps_HelpShort[];
196 extern const char kPublicDeps_Help[]; 196 extern const char kPublicDeps_Help[];
197 197
198 extern const char kResponseFileContents[];
199 extern const char kResponseFileContents_HelpShort[];
200 extern const char kResponseFileContents_Help[];
201
198 extern const char kScript[]; 202 extern const char kScript[];
199 extern const char kScript_HelpShort[]; 203 extern const char kScript_HelpShort[];
200 extern const char kScript_Help[]; 204 extern const char kScript_Help[];
201 205
202 extern const char kSources[]; 206 extern const char kSources[];
203 extern const char kSources_HelpShort[]; 207 extern const char kSources_HelpShort[];
204 extern const char kSources_Help[]; 208 extern const char kSources_Help[];
205 209
206 extern const char kTestonly[]; 210 extern const char kTestonly[];
207 extern const char kTestonly_HelpShort[]; 211 extern const char kTestonly_HelpShort[];
(...skipping 20 matching lines...) Expand all
228 // Note: this is used only for help so this getter is not threadsafe. 232 // Note: this is used only for help so this getter is not threadsafe.
229 const VariableInfoMap& GetBuiltinVariables(); 233 const VariableInfoMap& GetBuiltinVariables();
230 234
231 // Returns the variables used by target generators. 235 // Returns the variables used by target generators.
232 // Note: this is used only for help so this getter is not threadsafe. 236 // Note: this is used only for help so this getter is not threadsafe.
233 const VariableInfoMap& GetTargetVariables(); 237 const VariableInfoMap& GetTargetVariables();
234 238
235 } // namespace variables 239 } // namespace variables
236 240
237 #endif // TOOLS_GN_VARIABLES_H_ 241 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/substitution_writer.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698