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

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

Issue 561273003: Add public deps to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 3 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 extern const char kCompleteStaticLib_Help[]; 104 extern const char kCompleteStaticLib_Help[];
105 105
106 extern const char kConfigs[]; 106 extern const char kConfigs[];
107 extern const char kConfigs_HelpShort[]; 107 extern const char kConfigs_HelpShort[];
108 extern const char kConfigs_Help[]; 108 extern const char kConfigs_Help[];
109 109
110 extern const char kData[]; 110 extern const char kData[];
111 extern const char kData_HelpShort[]; 111 extern const char kData_HelpShort[];
112 extern const char kData_Help[]; 112 extern const char kData_Help[];
113 113
114 extern const char kDatadeps[]; 114 extern const char kDataDeps[];
115 extern const char kDatadeps_HelpShort[]; 115 extern const char kDataDeps_HelpShort[];
116 extern const char kDatadeps_Help[]; 116 extern const char kDataDeps_Help[];
117 117
118 extern const char kDefines[]; 118 extern const char kDefines[];
119 extern const char kDefines_HelpShort[]; 119 extern const char kDefines_HelpShort[];
120 extern const char kDefines_Help[]; 120 extern const char kDefines_Help[];
121 121
122 extern const char kDepfile[]; 122 extern const char kDepfile[];
123 extern const char kDepfile_HelpShort[]; 123 extern const char kDepfile_HelpShort[];
124 extern const char kDepfile_Help[]; 124 extern const char kDepfile_Help[];
125 125
126 extern const char kDeps[]; 126 extern const char kDeps[];
127 extern const char kDeps_HelpShort[]; 127 extern const char kDeps_HelpShort[];
128 extern const char kDeps_Help[]; 128 extern const char kDeps_Help[];
129 129
130 extern const char kDirectDependentConfigs[];
131 extern const char kDirectDependentConfigs_HelpShort[];
132 extern const char kDirectDependentConfigs_Help[];
133
134 extern const char kForwardDependentConfigsFrom[]; 130 extern const char kForwardDependentConfigsFrom[];
135 extern const char kForwardDependentConfigsFrom_HelpShort[]; 131 extern const char kForwardDependentConfigsFrom_HelpShort[];
136 extern const char kForwardDependentConfigsFrom_Help[]; 132 extern const char kForwardDependentConfigsFrom_Help[];
137 133
138 extern const char kIncludeDirs[]; 134 extern const char kIncludeDirs[];
139 extern const char kIncludeDirs_HelpShort[]; 135 extern const char kIncludeDirs_HelpShort[];
140 extern const char kIncludeDirs_Help[]; 136 extern const char kIncludeDirs_Help[];
141 137
142 extern const char kInputs[]; 138 extern const char kInputs[];
143 extern const char kInputs_HelpShort[]; 139 extern const char kInputs_HelpShort[];
(...skipping 20 matching lines...) Expand all
164 extern const char kOutputName_Help[]; 160 extern const char kOutputName_Help[];
165 161
166 extern const char kOutputs[]; 162 extern const char kOutputs[];
167 extern const char kOutputs_HelpShort[]; 163 extern const char kOutputs_HelpShort[];
168 extern const char kOutputs_Help[]; 164 extern const char kOutputs_Help[];
169 165
170 extern const char kPublic[]; 166 extern const char kPublic[];
171 extern const char kPublic_HelpShort[]; 167 extern const char kPublic_HelpShort[];
172 extern const char kPublic_Help[]; 168 extern const char kPublic_Help[];
173 169
170 extern const char kPublicConfigs[];
171 extern const char kPublicConfigs_HelpShort[];
172 extern const char kPublicConfigs_Help[];
173
174 extern const char kPublicDeps[];
175 extern const char kPublicDeps_HelpShort[];
176 extern const char kPublicDeps_Help[];
177
174 extern const char kScript[]; 178 extern const char kScript[];
175 extern const char kScript_HelpShort[]; 179 extern const char kScript_HelpShort[];
176 extern const char kScript_Help[]; 180 extern const char kScript_Help[];
177 181
178 extern const char kSources[]; 182 extern const char kSources[];
179 extern const char kSources_HelpShort[]; 183 extern const char kSources_HelpShort[];
180 extern const char kSources_Help[]; 184 extern const char kSources_Help[];
181 185
182 extern const char kTestonly[]; 186 extern const char kTestonly[];
183 extern const char kTestonly_HelpShort[]; 187 extern const char kTestonly_HelpShort[];
(...skipping 20 matching lines...) Expand all
204 // Note: this is used only for help so this getter is not threadsafe. 208 // Note: this is used only for help so this getter is not threadsafe.
205 const VariableInfoMap& GetBuiltinVariables(); 209 const VariableInfoMap& GetBuiltinVariables();
206 210
207 // Returns the variables used by target generators. 211 // Returns the variables used by target generators.
208 // Note: this is used only for help so this getter is not threadsafe. 212 // Note: this is used only for help so this getter is not threadsafe.
209 const VariableInfoMap& GetTargetVariables(); 213 const VariableInfoMap& GetTargetVariables();
210 214
211 } // namespace variables 215 } // namespace variables
212 216
213 #endif // TOOLS_GN_VARIABLES_H_ 217 #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