| Index: tools/gn/target.cc
|
| diff --git a/tools/gn/target.cc b/tools/gn/target.cc
|
| index 759d7bff14493e59663830c67f2259562eb28f11..33d42be47d172e286f1f5bf6975f86a6a35a327e 100644
|
| --- a/tools/gn/target.cc
|
| +++ b/tools/gn/target.cc
|
| @@ -275,8 +275,10 @@ Dependencies
|
| future, do not rely on this behavior.
|
| )";
|
|
|
| -Target::Target(const Settings* settings, const Label& label)
|
| - : Item(settings, label),
|
| +Target::Target(const Settings* settings,
|
| + const Label& label,
|
| + const InputFileSet& input_files)
|
| + : Item(settings, label, input_files),
|
| output_type_(UNKNOWN),
|
| output_prefix_override_(false),
|
| output_extension_set_(false),
|
| @@ -284,8 +286,7 @@ Target::Target(const Settings* settings, const Label& label)
|
| check_includes_(true),
|
| complete_static_lib_(false),
|
| testonly_(false),
|
| - toolchain_(nullptr) {
|
| -}
|
| + toolchain_(nullptr) {}
|
|
|
| Target::~Target() {
|
| }
|
|
|