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

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

Issue 1386783003: [GN]: Support for loadable modules (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unit tests 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 extern const char kCompleteStaticLib_Help[]; 116 extern const char kCompleteStaticLib_Help[];
117 117
118 extern const char kConfigs[]; 118 extern const char kConfigs[];
119 extern const char kConfigs_HelpShort[]; 119 extern const char kConfigs_HelpShort[];
120 extern const char kConfigs_Help[]; 120 extern const char kConfigs_Help[];
121 121
122 extern const char kConsole[]; 122 extern const char kConsole[];
123 extern const char kConsole_HelpShort[]; 123 extern const char kConsole_HelpShort[];
124 extern const char kConsole_Help[]; 124 extern const char kConsole_Help[];
125 125
126 extern const char kDarwinBundle[];
127 extern const char kDarwinBundle_HelpShort[];
128 extern const char kDarwinBundle_Help[];
129
126 extern const char kData[]; 130 extern const char kData[];
127 extern const char kData_HelpShort[]; 131 extern const char kData_HelpShort[];
128 extern const char kData_Help[]; 132 extern const char kData_Help[];
129 133
130 extern const char kDataDeps[]; 134 extern const char kDataDeps[];
131 extern const char kDataDeps_HelpShort[]; 135 extern const char kDataDeps_HelpShort[];
132 extern const char kDataDeps_Help[]; 136 extern const char kDataDeps_Help[];
133 137
134 extern const char kDefines[]; 138 extern const char kDefines[];
135 extern const char kDefines_HelpShort[]; 139 extern const char kDefines_HelpShort[];
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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

Powered by Google App Engine
This is Rietveld 408576698