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

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

Issue 561273003: Add public deps to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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_TARGET_GENERATOR_H_ 5 #ifndef TOOLS_GN_TARGET_GENERATOR_H_
6 #define TOOLS_GN_TARGET_GENERATOR_H_ 6 #define TOOLS_GN_TARGET_GENERATOR_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 30 matching lines...) Expand all
41 const std::vector<Value>& args, 41 const std::vector<Value>& args,
42 const std::string& output_type, 42 const std::string& output_type,
43 Err* err); 43 Err* err);
44 44
45 protected: 45 protected:
46 // Derived classes implement this to do type-specific generation. 46 // Derived classes implement this to do type-specific generation.
47 virtual void DoRun() = 0; 47 virtual void DoRun() = 0;
48 48
49 const BuildSettings* GetBuildSettings() const; 49 const BuildSettings* GetBuildSettings() const;
50 50
51 void FillSources(); 51 bool FillSources();
52 void FillPublic(); 52 bool FillPublic();
53 void FillInputs(); 53 bool FillInputs();
54 void FillConfigs(); 54 bool FillConfigs();
55 void FillOutputs(bool allow_substitutions); 55 bool FillOutputs(bool allow_substitutions);
56 56
57 // Rrturns true if the given pattern will expand to a file in the output 57 // Rrturns true if the given pattern will expand to a file in the output
58 // directory. If not, returns false and sets the error, blaming the given 58 // directory. If not, returns false and sets the error, blaming the given
59 // Value. 59 // Value.
60 bool EnsureSubstitutionIsInOutputDir( 60 bool EnsureSubstitutionIsInOutputDir(
61 const SubstitutionPattern& pattern, 61 const SubstitutionPattern& pattern,
62 const Value& original_value); 62 const Value& original_value);
63 63
64 Target* target_; 64 Target* target_;
65 Scope* scope_; 65 Scope* scope_;
66 const FunctionCallNode* function_call_; 66 const FunctionCallNode* function_call_;
67 Err* err_; 67 Err* err_;
68 68
69 private: 69 private:
70 void FillDependentConfigs(); // Includes all types of dependent configs. 70 bool FillDependentConfigs(); // Includes all types of dependent configs.
71 void FillData(); 71 bool FillData();
72 void FillDependencies(); // Includes data dependencies. 72 bool FillDependencies(); // Includes data dependencies.
73 void FillTestonly(); 73 bool FillTestonly();
74 74
75 // Reads configs/deps from the given var name, and uses the given setting on 75 // Reads configs/deps from the given var name, and uses the given setting on
76 // the target to save them. 76 // the target to save them.
77 void FillGenericConfigs(const char* var_name, 77 bool FillGenericConfigs(const char* var_name,
78 UniqueVector<LabelConfigPair>* dest); 78 UniqueVector<LabelConfigPair>* dest);
79 void FillGenericDeps(const char* var_name, LabelTargetVector* dest); 79 bool FillGenericDeps(const char* var_name, LabelTargetVector* dest);
80 80
81 void FillForwardDependentConfigs(); 81 bool FillForwardDependentConfigs();
82 82
83 DISALLOW_COPY_AND_ASSIGN(TargetGenerator); 83 DISALLOW_COPY_AND_ASSIGN(TargetGenerator);
84 }; 84 };
85 85
86 #endif // TOOLS_GN_TARGET_GENERATOR_H_ 86 #endif // TOOLS_GN_TARGET_GENERATOR_H_
OLDNEW
« tools/gn/target.cc ('K') | « tools/gn/target.cc ('k') | tools/gn/target_generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698