| Index: tools/gn/toolchain.h
|
| diff --git a/tools/gn/toolchain.h b/tools/gn/toolchain.h
|
| index 3b37a7ac506036990c0ffd0416c110927fdccb37..eba396d9e27a76aa2dd97cf948f826569e00912c 100644
|
| --- a/tools/gn/toolchain.h
|
| +++ b/tools/gn/toolchain.h
|
| @@ -84,11 +84,6 @@ class Toolchain : public Item {
|
| const Tool& GetTool(ToolType type) const;
|
| void SetTool(ToolType type, const Tool& t);
|
|
|
| - // This extra stuff is specified by the build and will be added to the top
|
| - // of a generated GYP file (right after the opening "{").
|
| - std::string gyp_header() const { return gyp_header_; }
|
| - void set_gyp_header(const std::string& gh) { gyp_header_ = gh; }
|
| -
|
| // Specifies build argument overrides that will be set on the base scope. It
|
| // will be as if these arguments were passed in on the command line. This
|
| // allows a toolchain to override the OS type of the default toolchain or
|
| @@ -100,8 +95,6 @@ class Toolchain : public Item {
|
| Tool tools_[TYPE_NUMTYPES];
|
|
|
| Scope::KeyValueMap args_;
|
| -
|
| - std::string gyp_header_;
|
| };
|
|
|
| #endif // TOOLS_GN_TOOLCHAIN_H_
|
|
|