diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-10-29 16:50:13 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-10-29 19:07:48 +0200 |
commit | 89cf17c96f1fe780a8aba62930411107ad2c7e59 (patch) | |
tree | 474108cff940c3f7814c1574ad87abdae1915a13 /modules/mono/build_scripts | |
parent | dae626ad64b83bd05ccf7bc18306bc91585997e2 (diff) |
Use maximum zlib compression when generating editor translation headers
With comments stripped, this reduces the combined generated translation
size from 28.7 MB to 28.4 MB (-240 KB).
Diffstat (limited to 'modules/mono/build_scripts')
-rw-r--r-- | modules/mono/build_scripts/make_android_mono_config.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/mono/build_scripts/make_android_mono_config.py b/modules/mono/build_scripts/make_android_mono_config.py index 28494bff6e..1920ef1c1a 100644 --- a/modules/mono/build_scripts/make_android_mono_config.py +++ b/modules/mono/build_scripts/make_android_mono_config.py @@ -8,7 +8,9 @@ def generate_compressed_config(config_src, output_dir): decompr_size = len(buf) import zlib - buf = zlib.compress(buf) + # Use maximum zlib compression level to further reduce file size + # (at the cost of initial build times). + buf = zlib.compress(buf, zlib.Z_BEST_COMPRESSION) compr_size = len(buf) bytes_seq_str = "" |