| Index: tools/gn/bundle_data.h
|
| diff --git a/tools/gn/bundle_data.h b/tools/gn/bundle_data.h
|
| index 9d1df13fe80f363665dbf5a7592234f3bf36deee..125c3b97de4b48842f0408f2d0d20085f504ab62 100644
|
| --- a/tools/gn/bundle_data.h
|
| +++ b/tools/gn/bundle_data.h
|
| @@ -9,6 +9,7 @@
|
| #include <vector>
|
|
|
| #include "tools/gn/bundle_file_rule.h"
|
| +#include "tools/gn/label_ptr.h"
|
|
|
| class OutputFile;
|
| class SourceFile;
|
| @@ -76,9 +77,12 @@ class BundleData {
|
| std::string& plugins_dir() { return plugins_dir_; }
|
| const std::string& plugins_dir() const { return plugins_dir_; }
|
|
|
| + const LabelTargetVector& deps() const { return deps_; }
|
| +
|
| private:
|
| std::vector<SourceFile> asset_catalog_sources_;
|
| std::vector<BundleFileRule> file_rules_;
|
| + LabelTargetVector deps_;
|
|
|
| // All those values are subdirectories relative to root_build_dir, and apart
|
| // from root_dir, they are either equal to root_dir_ or subdirectories of it.
|
|
|