| Index: tools/gn/bundle_data.h
|
| diff --git a/tools/gn/bundle_data.h b/tools/gn/bundle_data.h
|
| index e78589e9e91cfce01f68a10928cafe92732965e9..89e4938a2e889b48f5769a9d868024bf403201c0 100644
|
| --- a/tools/gn/bundle_data.h
|
| +++ b/tools/gn/bundle_data.h
|
| @@ -85,6 +85,11 @@ class BundleData {
|
| std::string& plugins_dir() { return plugins_dir_; }
|
| const std::string& plugins_dir() const { return plugins_dir_; }
|
|
|
| + void set_binary_compress(bool binary_compress) {
|
| + binary_compress_ = binary_compress;
|
| + }
|
| + bool binary_compress() const { return binary_compress_; }
|
| +
|
| // Recursive collection of all bundle_data that the target depends on.
|
| const UniqueTargets& bundle_deps() const { return bundle_deps_; }
|
|
|
| @@ -99,6 +104,8 @@ class BundleData {
|
| std::string resources_dir_;
|
| std::string executable_dir_;
|
| std::string plugins_dir_;
|
| +
|
| + bool binary_compress_;
|
| };
|
|
|
| #endif // TOOLS_GN_BUNDLE_DATA_H_
|
|
|