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

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

Issue 1842563006: DO NOT SUBMIT. Experimental Mac GN Framework support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Binary bundle data Created 4 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
« no previous file with comments | « tools/gn/target.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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 extern const char kArgs_Help[]; 84 extern const char kArgs_Help[];
85 85
86 extern const char kAsmflags[]; 86 extern const char kAsmflags[];
87 extern const char kAsmflags_HelpShort[]; 87 extern const char kAsmflags_HelpShort[];
88 extern const char* kAsmflags_Help; 88 extern const char* kAsmflags_Help;
89 89
90 extern const char kAssertNoDeps[]; 90 extern const char kAssertNoDeps[];
91 extern const char kAssertNoDeps_HelpShort[]; 91 extern const char kAssertNoDeps_HelpShort[];
92 extern const char kAssertNoDeps_Help[]; 92 extern const char kAssertNoDeps_Help[];
93 93
94 extern const char kBinaryCompress[];
95 extern const char kBinaryCompress_HelpShort[];
96 extern const char kBinaryCompress_Help[];
97
94 extern const char kBundleRootDir[]; 98 extern const char kBundleRootDir[];
95 extern const char kBundleRootDir_HelpShort[]; 99 extern const char kBundleRootDir_HelpShort[];
96 extern const char kBundleRootDir_Help[]; 100 extern const char kBundleRootDir_Help[];
97 101
98 extern const char kBundleResourcesDir[]; 102 extern const char kBundleResourcesDir[];
99 extern const char kBundleResourcesDir_HelpShort[]; 103 extern const char kBundleResourcesDir_HelpShort[];
100 extern const char kBundleResourcesDir_Help[]; 104 extern const char kBundleResourcesDir_Help[];
101 105
102 extern const char kBundleExecutableDir[]; 106 extern const char kBundleExecutableDir[];
103 extern const char kBundleExecutableDir_HelpShort[]; 107 extern const char kBundleExecutableDir_HelpShort[];
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 // Note: this is used only for help so this getter is not threadsafe. 256 // Note: this is used only for help so this getter is not threadsafe.
253 const VariableInfoMap& GetBuiltinVariables(); 257 const VariableInfoMap& GetBuiltinVariables();
254 258
255 // Returns the variables used by target generators. 259 // Returns the variables used by target generators.
256 // Note: this is used only for help so this getter is not threadsafe. 260 // Note: this is used only for help so this getter is not threadsafe.
257 const VariableInfoMap& GetTargetVariables(); 261 const VariableInfoMap& GetTargetVariables();
258 262
259 } // namespace variables 263 } // namespace variables
260 264
261 #endif // TOOLS_GN_VARIABLES_H_ 265 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/target.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698