Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: tools/gn/config.cc

Issue 2940873002: Implement tracking of BUILD.gn files used to define target, toolchain or (Closed)
Patch Set: Use base::flat_set instead of std::set. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {
}

Powered by Google App Engine
This is Rietveld 408576698