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

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

Issue 2205693005: Add bundle_deps_filter to create_bundle targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix value of kBundleDepsFilter. Created 4 years, 4 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/functions_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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 extern const char kAssertNoDeps_Help[]; 104 extern const char kAssertNoDeps_Help[];
105 105
106 extern const char kBundleRootDir[]; 106 extern const char kBundleRootDir[];
107 extern const char kBundleRootDir_HelpShort[]; 107 extern const char kBundleRootDir_HelpShort[];
108 extern const char kBundleRootDir_Help[]; 108 extern const char kBundleRootDir_Help[];
109 109
110 extern const char kBundleResourcesDir[]; 110 extern const char kBundleResourcesDir[];
111 extern const char kBundleResourcesDir_HelpShort[]; 111 extern const char kBundleResourcesDir_HelpShort[];
112 extern const char kBundleResourcesDir_Help[]; 112 extern const char kBundleResourcesDir_Help[];
113 113
114 extern const char kBundleDepsFilter[];
115 extern const char kBundleDepsFilter_HelpShort[];
116 extern const char kBundleDepsFilter_Help[];
117
114 extern const char kBundleExecutableDir[]; 118 extern const char kBundleExecutableDir[];
115 extern const char kBundleExecutableDir_HelpShort[]; 119 extern const char kBundleExecutableDir_HelpShort[];
116 extern const char kBundleExecutableDir_Help[]; 120 extern const char kBundleExecutableDir_Help[];
117 121
118 extern const char kBundlePlugInsDir[]; 122 extern const char kBundlePlugInsDir[];
119 extern const char kBundlePlugInsDir_HelpShort[]; 123 extern const char kBundlePlugInsDir_HelpShort[];
120 extern const char kBundlePlugInsDir_Help[]; 124 extern const char kBundlePlugInsDir_Help[];
121 125
122 extern const char kCflags[]; 126 extern const char kCflags[];
123 extern const char kCflags_HelpShort[]; 127 extern const char kCflags_HelpShort[];
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 // Note: this is used only for help so this getter is not threadsafe. 300 // Note: this is used only for help so this getter is not threadsafe.
297 const VariableInfoMap& GetBuiltinVariables(); 301 const VariableInfoMap& GetBuiltinVariables();
298 302
299 // Returns the variables used by target generators. 303 // Returns the variables used by target generators.
300 // Note: this is used only for help so this getter is not threadsafe. 304 // Note: this is used only for help so this getter is not threadsafe.
301 const VariableInfoMap& GetTargetVariables(); 305 const VariableInfoMap& GetTargetVariables();
302 306
303 } // namespace variables 307 } // namespace variables
304 308
305 #endif // TOOLS_GN_VARIABLES_H_ 309 #endif // TOOLS_GN_VARIABLES_H_
OLDNEW
« no previous file with comments | « tools/gn/functions_target.cc ('k') | tools/gn/variables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698