Index: tools/gn/target.h |
diff --git a/tools/gn/target.h b/tools/gn/target.h |
index 13b278c781f89e2de7cc3e3e207161ad1acada51..58f0de1bffa9772f57068f602f249ddd9ab6f877 100644 |
--- a/tools/gn/target.h |
+++ b/tools/gn/target.h |
@@ -51,13 +51,6 @@ class Target : public Item { |
virtual const Target* AsTarget() const OVERRIDE; |
virtual void OnResolved() OVERRIDE; |
- // This flag indicates if we've run the TargetGenerator for this target to |
- // fill out the rest of the values. Once we've done this, we save the |
- // location of the function that started the generating so that we can detect |
- // duplicate declarations. |
- bool HasBeenGenerated() const; |
- void SetGenerated(const Token* token); |
- |
OutputType output_type() const { return output_type_; } |
void set_output_type(OutputType t) { output_type_ = t; } |
@@ -192,9 +185,6 @@ class Target : public Item { |
SourceFile gyp_file_; |
- bool generated_; |
- const Token* generator_function_; // Who generated this: for error messages. |
- |
DISALLOW_COPY_AND_ASSIGN(Target); |
}; |