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

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

Issue 333243004: Rename GN source_prereqs to inputs, enhance "desc" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « tools/gn/target_generator.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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 extern const char kDirectDependentConfigs_Help[]; 124 extern const char kDirectDependentConfigs_Help[];
125 125
126 extern const char kForwardDependentConfigsFrom[]; 126 extern const char kForwardDependentConfigsFrom[];
127 extern const char kForwardDependentConfigsFrom_HelpShort[]; 127 extern const char kForwardDependentConfigsFrom_HelpShort[];
128 extern const char kForwardDependentConfigsFrom_Help[]; 128 extern const char kForwardDependentConfigsFrom_Help[];
129 129
130 extern const char kIncludeDirs[]; 130 extern const char kIncludeDirs[];
131 extern const char kIncludeDirs_HelpShort[]; 131 extern const char kIncludeDirs_HelpShort[];
132 extern const char kIncludeDirs_Help[]; 132 extern const char kIncludeDirs_Help[];
133 133
134 extern const char kInputs[];
135 extern const char kInputs_HelpShort[];
136 extern const char kInputs_Help[];
137
134 extern const char kLdflags[]; 138 extern const char kLdflags[];
135 extern const char kLdflags_HelpShort[]; 139 extern const char kLdflags_HelpShort[];
136 extern const char kLdflags_Help[]; 140 extern const char kLdflags_Help[];
137 141
138 extern const char kLibDirs[]; 142 extern const char kLibDirs[];
139 extern const char kLibDirs_HelpShort[]; 143 extern const char kLibDirs_HelpShort[];
140 extern const char kLibDirs_Help[]; 144 extern const char kLibDirs_Help[];
141 145
142 extern const char kLibs[]; 146 extern const char kLibs[];
143 extern const char kLibs_HelpShort[]; 147 extern const char kLibs_HelpShort[];
(...skipping 12 matching lines...) Expand all
156 extern const char kOutputs_Help[]; 160 extern const char kOutputs_Help[];
157 161
158 extern const char kPublic[]; 162 extern const char kPublic[];
159 extern const char kPublic_HelpShort[]; 163 extern const char kPublic_HelpShort[];
160 extern const char kPublic_Help[]; 164 extern const char kPublic_Help[];
161 165
162 extern const char kScript[]; 166 extern const char kScript[];
163 extern const char kScript_HelpShort[]; 167 extern const char kScript_HelpShort[];
164 extern const char kScript_Help[]; 168 extern const char kScript_Help[];
165 169
166 extern const char kSourcePrereqs[];
167 extern const char kSourcePrereqs_HelpShort[];
168 extern const char kSourcePrereqs_Help[];
169
170 extern const char kSources[]; 170 extern const char kSources[];
171 extern const char kSources_HelpShort[]; 171 extern const char kSources_HelpShort[];
172 extern const char kSources_Help[]; 172 extern const char kSources_Help[];
173 173
174 extern const char kVisibility[]; 174 extern const char kVisibility[];
175 extern const char kVisibility_HelpShort[]; 175 extern const char kVisibility_HelpShort[];
176 extern const char kVisibility_Help[]; 176 extern const char kVisibility_Help[];
177 177
178 // ----------------------------------------------------------------------------- 178 // -----------------------------------------------------------------------------
179 179
(...skipping 12 matching lines...) Expand all
192 // Note: this is used only for help so this getter is not threadsafe. 192 // Note: this is used only for help so this getter is not threadsafe.
193 const VariableInfoMap& GetBuiltinVariables(); 193 const VariableInfoMap& GetBuiltinVariables();
194 194
195 // Returns the variables used by target generators. 195 // Returns the variables used by target generators.
196 // Note: this is used only for help so this getter is not threadsafe. 196 // Note: this is used only for help so this getter is not threadsafe.
197 const VariableInfoMap& GetTargetVariables(); 197 const VariableInfoMap& GetTargetVariables();
198 198
199 } // namespace variables 199 } // namespace variables
200 200
201 #endif // TOOLS_GN_VARIABLES_H_ 201 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/target_generator.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698