| Index: tools/gn/config.cc
|
| diff --git a/tools/gn/config.cc b/tools/gn/config.cc
|
| index c06632449a4634b0c807f010f7e6ff23088f8279..3f0912ea66506b4fb122d9b96b2d71dcd2714f84 100644
|
| --- a/tools/gn/config.cc
|
| +++ b/tools/gn/config.cc
|
| @@ -8,10 +8,10 @@
|
| #include "tools/gn/input_file_manager.h"
|
| #include "tools/gn/scheduler.h"
|
|
|
| -Config::Config(const Settings* settings, const Label& label)
|
| - : Item(settings, label),
|
| - resolved_(false) {
|
| -}
|
| +Config::Config(const Settings* settings,
|
| + const Label& label,
|
| + const InputFileSet& input_files)
|
| + : Item(settings, label, input_files), resolved_(false) {}
|
|
|
| Config::~Config() {
|
| }
|
|
|