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

Unified Diff: tools/gn/target.h

Issue 2880093002: gn desc: printing public_deps without --all and --tree
Patch Set: fixing documentation indentation 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
« no previous file with comments | « tools/gn/desc_builder.cc ('k') | tools/gn/target.cc » ('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 1890a535e7a7f4c8671ee7be9138e488ce92e1f1..c73e24dc42f97cf76b94baa6c769ff32c938c5b6 100644
--- a/tools/gn/target.h
+++ b/tools/gn/target.h
@@ -48,8 +48,11 @@ class Target : public Item {
};
enum DepsIterationType {
- DEPS_ALL, // Iterates through all public, private, and data deps.
- DEPS_LINKED, // Iterates through all non-data dependencies.
+ DEPS_ALL, // Iterates through all public, private, and data deps.
+ DEPS_DATA, // Iterates through all data dependencies.
+ DEPS_LINKED, // Iterates through all non-data dependencies.
+ DEPS_PRIVATE, // Iterates through private deps.
+ DEPS_PUBLIC, // Iterates through public deps.
};
typedef std::vector<SourceFile> FileList;
« no previous file with comments | « tools/gn/desc_builder.cc ('k') | tools/gn/target.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698