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

Unified Diff: tools/gn/target.h

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/target.h
diff --git a/tools/gn/target.h b/tools/gn/target.h
index 1890a535e7a7f4c8671ee7be9138e488ce92e1f1..e5e441f038238883a344b51eb5e514af8271dcc0 100644
--- a/tools/gn/target.h
+++ b/tools/gn/target.h
@@ -55,7 +55,9 @@ class Target : public Item {
typedef std::vector<SourceFile> FileList;
typedef std::vector<std::string> StringVector;
- Target(const Settings* settings, const Label& label);
+ Target(const Settings* settings,
+ const Label& label,
+ const InputFileSet& input_files);
~Target() override;
// Returns a string naming the output type.

Powered by Google App Engine
This is Rietveld 408576698