| Index: tools/gn/bundle_file_rule.h
|
| diff --git a/tools/gn/bundle_file_rule.h b/tools/gn/bundle_file_rule.h
|
| index 9fbf01214d4cc34004fa194674c02e478649b8ca..593b59bb37a64251694b8fcbf610f94b8d0e12b6 100644
|
| --- a/tools/gn/bundle_file_rule.h
|
| +++ b/tools/gn/bundle_file_rule.h
|
| @@ -19,7 +19,8 @@ class OutputFile;
|
| class BundleFileRule {
|
| public:
|
| BundleFileRule(const std::vector<SourceFile> sources,
|
| - const SubstitutionPattern& pattern);
|
| + const SubstitutionPattern& pattern,
|
| + bool binary_compress);
|
| BundleFileRule(const BundleFileRule& other);
|
| ~BundleFileRule();
|
|
|
| @@ -36,9 +37,12 @@ class BundleFileRule {
|
| // Returns the list of SourceFiles.
|
| const std::vector<SourceFile>& sources() const { return sources_; }
|
|
|
| + bool binary_compress() const { return binary_compress_; }
|
| +
|
| private:
|
| std::vector<SourceFile> sources_;
|
| SubstitutionPattern pattern_;
|
| + bool binary_compress_;
|
| };
|
|
|
| #endif // TOOLS_GN_BUNDLE_FILE_RULE_H_
|
|
|