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

Unified Diff: tools/gn/target.h

Issue 333243004: Rename GN source_prereqs to inputs, enhance "desc" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« no previous file with comments | « tools/gn/ninja_target_writer_unittest.cc ('k') | tools/gn/target_generator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/target.h
diff --git a/tools/gn/target.h b/tools/gn/target.h
index 644704355c3ca3f82d08e293fd3afe97fc0f3320..572333d925f7086459139619a5e0eeba603327a3 100644
--- a/tools/gn/target.h
+++ b/tools/gn/target.h
@@ -80,8 +80,8 @@ class Target : public Item {
FileList& public_headers() { return public_headers_; }
// Compile-time extra dependencies.
- const FileList& source_prereqs() const { return source_prereqs_; }
- FileList& source_prereqs() { return source_prereqs_; }
+ const FileList& inputs() const { return inputs_; }
+ FileList& inputs() { return inputs_; }
// Runtime dependencies.
const FileList& data() const { return data_; }
@@ -171,7 +171,7 @@ class Target : public Item {
FileList sources_;
bool all_headers_public_;
FileList public_headers_;
- FileList source_prereqs_;
+ FileList inputs_;
FileList data_;
bool hard_dep_;
« no previous file with comments | « tools/gn/ninja_target_writer_unittest.cc ('k') | tools/gn/target_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698