Remove the now unused TextButton code.
[chromium-blink-merge.git] / tools / gn / target_generator.h
blobbaee0f1114ca10a1858f968678b69b11b280f2fe
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 void FillSources();
52 void FillPublic();
53 void FillInputs();
54 void FillConfigs();
55 void FillOutputs();
57 Target* target_;
58 Scope* scope_;
59 const FunctionCallNode* function_call_;
60 Err* err_;
62 private:
63 void FillDependentConfigs(); // Includes all types of dependent configs.
64 void FillData();
65 void FillDependencies(); // Includes data dependencies.
67 // Reads configs/deps from the given var name, and uses the given setting on
68 // the target to save them.
69 void FillGenericConfigs(const char* var_name, LabelConfigVector* dest);
70 void FillGenericDeps(const char* var_name, LabelTargetVector* dest);
72 void FillForwardDependentConfigs();
74 DISALLOW_COPY_AND_ASSIGN(TargetGenerator);
77 #endif // TOOLS_GN_TARGET_GENERATOR_H_