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

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

Issue 216903004: Add optional public header checking to GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unit test Created 6 years, 8 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/trace.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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 extern const char kOutputExtension_Help[]; 152 extern const char kOutputExtension_Help[];
153 153
154 extern const char kOutputName[]; 154 extern const char kOutputName[];
155 extern const char kOutputName_HelpShort[]; 155 extern const char kOutputName_HelpShort[];
156 extern const char kOutputName_Help[]; 156 extern const char kOutputName_Help[];
157 157
158 extern const char kOutputs[]; 158 extern const char kOutputs[];
159 extern const char kOutputs_HelpShort[]; 159 extern const char kOutputs_HelpShort[];
160 extern const char kOutputs_Help[]; 160 extern const char kOutputs_Help[];
161 161
162 extern const char kPublic[];
163 extern const char kPublic_HelpShort[];
164 extern const char kPublic_Help[];
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[]; 170 extern const char kSourcePrereqs[];
167 extern const char kSourcePrereqs_HelpShort[]; 171 extern const char kSourcePrereqs_HelpShort[];
168 extern const char kSourcePrereqs_Help[]; 172 extern const char kSourcePrereqs_Help[];
169 173
170 extern const char kSources[]; 174 extern const char kSources[];
171 extern const char kSources_HelpShort[]; 175 extern const char kSources_HelpShort[];
(...skipping 20 matching lines...) Expand all
192 // 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.
193 const VariableInfoMap& GetBuiltinVariables(); 197 const VariableInfoMap& GetBuiltinVariables();
194 198
195 // Returns the variables used by target generators. 199 // Returns the variables used by target generators.
196 // Note: this is used only for help so this getter is not threadsafe. 200 // Note: this is used only for help so this getter is not threadsafe.
197 const VariableInfoMap& GetTargetVariables(); 201 const VariableInfoMap& GetTargetVariables();
198 202
199 } // namespace variables 203 } // namespace variables
200 204
201 #endif // TOOLS_GN_VARIABLES_H_ 205 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/trace.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698