Chromium Code Reviews| Index: tools/gn/target.h |
| diff --git a/tools/gn/target.h b/tools/gn/target.h |
| index 1890a535e7a7f4c8671ee7be9138e488ce92e1f1..75eadfc267eca1f84ee9cf7dc5cfa4bb9677061f 100644 |
| --- a/tools/gn/target.h |
| +++ b/tools/gn/target.h |
| @@ -48,8 +48,10 @@ 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_LINKED, // Iterates through all non-data dependencies. |
| + DEPS_PRIVATE, // Iterates through private and data deps. |
|
brettw
2017/06/07 19:59:15
This shouldn't include data deps.
mbonadei1
2017/06/08 11:37:45
Done.
|
| + DEPS_PUBLIC, // Iterates through public deps. |
| }; |
| typedef std::vector<SourceFile> FileList; |