Remove ServiceDiscoveryClient* from PrivetHTTPAsynchronousFactoryImpl interface
[chromium-blink-merge.git] / tools / gn / target_generator.h
blobef2ab83d02a833337eac3640bdc706d49686a2f8
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
3 // found in the LICENSE file.
5 #ifndef TOOLS_GN_TARGET_GENERATOR_H_
6 #define TOOLS_GN_TARGET_GENERATOR_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "tools/gn/source_dir.h"
14 #include "tools/gn/target.h"
16 class BuildSettings;
17 class Err;
18 class FunctionCallNode;
19 class Location;
20 class Scope;
21 class Value;
23 // Fills the variables in a Target object from a Scope (the result of a script
24 // execution). Target-type-specific derivations of this class will be used
25 // for each different type of function call. This class implements the common
26 // behavior.
27 class TargetGenerator {
28 public:
29 TargetGenerator(Target* target,
30 Scope* scope,
31 const FunctionCallNode* function_call,
32 Err* err);
33 ~TargetGenerator();
35 void Run();
37 // The function call is the parse tree node that invoked the target.
38 // err() will be set on failure.
39 static void GenerateTarget(Scope* scope,
40 const FunctionCallNode* function_call,
41 const std::vector<Value>& args,
42 const std::string& output_type,
43 Err* err);
45 protected:
46 // Derived classes implement this to do type-specific generation.
47 virtual void DoRun() = 0;
49 const BuildSettings* GetBuildSettings() const;
51 bool FillSources();
52 bool FillPublic();
53 bool FillInputs();
54 bool FillConfigs();
55 bool FillOutputs(bool allow_substitutions);
56 bool FillCheckIncludes();
58 // Rrturns true if the given pattern will expand to a file in the output
59 // directory. If not, returns false and sets the error, blaming the given
60 // Value.
61 bool EnsureSubstitutionIsInOutputDir(
62 const SubstitutionPattern& pattern,
63 const Value& original_value);
65 Target* target_;
66 Scope* scope_;
67 const FunctionCallNode* function_call_;
68 Err* err_;
70 private:
71 bool FillDependentConfigs(); // Includes all types of dependent configs.
72 bool FillData();
73 bool FillDependencies(); // Includes data dependencies.
74 bool FillTestonly();
76 // Reads configs/deps from the given var name, and uses the given setting on
77 // the target to save them.
78 bool FillGenericConfigs(const char* var_name,
79 UniqueVector<LabelConfigPair>* dest);
80 bool FillGenericDeps(const char* var_name, LabelTargetVector* dest);
82 bool FillForwardDependentConfigs();
84 DISALLOW_COPY_AND_ASSIGN(TargetGenerator);
87 #endif // TOOLS_GN_TARGET_GENERATOR_H_