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

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

Issue 565283002: GN: Add notion of 'complete' static libraries, akin to GYP. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Actually process new argument. Duh. 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 extern const char* kCflagsObjC_Help; 92 extern const char* kCflagsObjC_Help;
93 93
94 extern const char kCflagsObjCC[]; 94 extern const char kCflagsObjCC[];
95 extern const char kCflagsObjCC_HelpShort[]; 95 extern const char kCflagsObjCC_HelpShort[];
96 extern const char* kCflagsObjCC_Help; 96 extern const char* kCflagsObjCC_Help;
97 97
98 extern const char kCheckIncludes[]; 98 extern const char kCheckIncludes[];
99 extern const char kCheckIncludes_HelpShort[]; 99 extern const char kCheckIncludes_HelpShort[];
100 extern const char kCheckIncludes_Help[]; 100 extern const char kCheckIncludes_Help[];
101 101
102 extern const char kCompleteStaticLib[];
103 extern const char kCompleteStaticLib_HelpShort[];
104 extern const char kCompleteStaticLib_Help[];
105
102 extern const char kConfigs[]; 106 extern const char kConfigs[];
103 extern const char kConfigs_HelpShort[]; 107 extern const char kConfigs_HelpShort[];
104 extern const char kConfigs_Help[]; 108 extern const char kConfigs_Help[];
105 109
106 extern const char kData[]; 110 extern const char kData[];
107 extern const char kData_HelpShort[]; 111 extern const char kData_HelpShort[];
108 extern const char kData_Help[]; 112 extern const char kData_Help[];
109 113
110 extern const char kDatadeps[]; 114 extern const char kDatadeps[];
111 extern const char kDatadeps_HelpShort[]; 115 extern const char kDatadeps_HelpShort[];
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 // Note: this is used only for help so this getter is not threadsafe. 204 // Note: this is used only for help so this getter is not threadsafe.
201 const VariableInfoMap& GetBuiltinVariables(); 205 const VariableInfoMap& GetBuiltinVariables();
202 206
203 // Returns the variables used by target generators. 207 // Returns the variables used by target generators.
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& GetTargetVariables(); 209 const VariableInfoMap& GetTargetVariables();
206 210
207 } // namespace variables 211 } // namespace variables
208 212
209 #endif // TOOLS_GN_VARIABLES_H_ 213 #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