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

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

Issue 1375023003: tools/gn: Remove code for forward_dependent_configs_from variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forward_dependent_configs Created 5 years, 2 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
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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 extern const char kDefines_Help[]; 136 extern const char kDefines_Help[];
137 137
138 extern const char kDepfile[]; 138 extern const char kDepfile[];
139 extern const char kDepfile_HelpShort[]; 139 extern const char kDepfile_HelpShort[];
140 extern const char kDepfile_Help[]; 140 extern const char kDepfile_Help[];
141 141
142 extern const char kDeps[]; 142 extern const char kDeps[];
143 extern const char kDeps_HelpShort[]; 143 extern const char kDeps_HelpShort[];
144 extern const char kDeps_Help[]; 144 extern const char kDeps_Help[];
145 145
146 extern const char kForwardDependentConfigsFrom[];
147 extern const char kForwardDependentConfigsFrom_HelpShort[];
148 extern const char kForwardDependentConfigsFrom_Help[];
149
150 extern const char kIncludeDirs[]; 146 extern const char kIncludeDirs[];
151 extern const char kIncludeDirs_HelpShort[]; 147 extern const char kIncludeDirs_HelpShort[];
152 extern const char kIncludeDirs_Help[]; 148 extern const char kIncludeDirs_Help[];
153 149
154 extern const char kInputs[]; 150 extern const char kInputs[];
155 extern const char kInputs_HelpShort[]; 151 extern const char kInputs_HelpShort[];
156 extern const char kInputs_Help[]; 152 extern const char kInputs_Help[];
157 153
158 extern const char kLdflags[]; 154 extern const char kLdflags[];
159 extern const char kLdflags_HelpShort[]; 155 extern const char kLdflags_HelpShort[];
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 // Note: this is used only for help so this getter is not threadsafe. 228 // Note: this is used only for help so this getter is not threadsafe.
233 const VariableInfoMap& GetBuiltinVariables(); 229 const VariableInfoMap& GetBuiltinVariables();
234 230
235 // Returns the variables used by target generators. 231 // Returns the variables used by target generators.
236 // 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.
237 const VariableInfoMap& GetTargetVariables(); 233 const VariableInfoMap& GetTargetVariables();
238 234
239 } // namespace variables 235 } // namespace variables
240 236
241 #endif // TOOLS_GN_VARIABLES_H_ 237 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698