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

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

Issue 206813002: Remove GN GYP generator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/toolchain.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 extern const char kDepfile_Help[]; 116 extern const char kDepfile_Help[];
117 117
118 extern const char kDeps[]; 118 extern const char kDeps[];
119 extern const char kDeps_HelpShort[]; 119 extern const char kDeps_HelpShort[];
120 extern const char kDeps_Help[]; 120 extern const char kDeps_Help[];
121 121
122 extern const char kDirectDependentConfigs[]; 122 extern const char kDirectDependentConfigs[];
123 extern const char kDirectDependentConfigs_HelpShort[]; 123 extern const char kDirectDependentConfigs_HelpShort[];
124 extern const char kDirectDependentConfigs_Help[]; 124 extern const char kDirectDependentConfigs_Help[];
125 125
126 extern const char kExternal[];
127 extern const char kExternal_HelpShort[];
128 extern const char kExternal_Help[];
129
130 extern const char kForwardDependentConfigsFrom[]; 126 extern const char kForwardDependentConfigsFrom[];
131 extern const char kForwardDependentConfigsFrom_HelpShort[]; 127 extern const char kForwardDependentConfigsFrom_HelpShort[];
132 extern const char kForwardDependentConfigsFrom_Help[]; 128 extern const char kForwardDependentConfigsFrom_Help[];
133 129
134 extern const char kGypFile[];
135 extern const char kGypFile_HelpShort[];
136 extern const char kGypFile_Help[];
137
138 extern const char kGypHeader[];
139 extern const char kGypHeader_HelpShort[];
140 extern const char kGypHeader_Help[];
141
142 extern const char kHardDep[]; 130 extern const char kHardDep[];
143 extern const char kHardDep_HelpShort[]; 131 extern const char kHardDep_HelpShort[];
144 extern const char kHardDep_Help[]; 132 extern const char kHardDep_Help[];
145 133
146 extern const char kIncludeDirs[]; 134 extern const char kIncludeDirs[];
147 extern const char kIncludeDirs_HelpShort[]; 135 extern const char kIncludeDirs_HelpShort[];
148 extern const char kIncludeDirs_Help[]; 136 extern const char kIncludeDirs_Help[];
149 137
150 extern const char kLdflags[]; 138 extern const char kLdflags[];
151 extern const char kLdflags_HelpShort[]; 139 extern const char kLdflags_HelpShort[];
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 // Note: this is used only for help so this getter is not threadsafe. 188 // Note: this is used only for help so this getter is not threadsafe.
201 const VariableInfoMap& GetBuiltinVariables(); 189 const VariableInfoMap& GetBuiltinVariables();
202 190
203 // Returns the variables used by target generators. 191 // Returns the variables used by target generators.
204 // 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.
205 const VariableInfoMap& GetTargetVariables(); 193 const VariableInfoMap& GetTargetVariables();
206 194
207 } // namespace variables 195 } // namespace variables
208 196
209 #endif // TOOLS_GN_VARIABLES_H_ 197 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/toolchain.h ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698