diff options
author | Moonchild <moonchild@palemoon.org> | 2020-11-13 15:59:29 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-11-18 10:58:22 +0000 |
commit | b645d59b1e170af1cb0963935bd8c915e56c431c (patch) | |
tree | 49fdc8001d5758558ada7a711f31e08095388294 /modules/brotli/moz.build | |
parent | 71e0814af25e8619782294e65aa42aa1044dabdc (diff) | |
download | UXP-b645d59b1e170af1cb0963935bd8c915e56c431c.tar UXP-b645d59b1e170af1cb0963935bd8c915e56c431c.tar.gz UXP-b645d59b1e170af1cb0963935bd8c915e56c431c.tar.lz UXP-b645d59b1e170af1cb0963935bd8c915e56c431c.tar.xz UXP-b645d59b1e170af1cb0963935bd8c915e56c431c.zip |
Issue #1683 - Update Brotli lib to 1.0.9
Diffstat (limited to 'modules/brotli/moz.build')
-rw-r--r-- | modules/brotli/moz.build | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/brotli/moz.build b/modules/brotli/moz.build index 6754d0317..3dec54a48 100644 --- a/modules/brotli/moz.build +++ b/modules/brotli/moz.build @@ -15,7 +15,10 @@ EXPORTS.brotli += [ ] SOURCES += [ + 'common/constants.c', + 'common/context.c', 'common/dictionary.c', + 'common/platform.c', 'common/transform.c', 'dec/bit_reader.c', 'dec/decode.c', @@ -45,12 +48,14 @@ HOST_SOURCES += [ 'enc/block_splitter.c', 'enc/brotli_bit_stream.c', 'enc/cluster.c', + 'enc/command.c', 'enc/compress_fragment.c', 'enc/compress_fragment_two_pass.c', 'enc/dictionary_hash.c', 'enc/encode.c', 'enc/encoder_dict.c', 'enc/entropy_encode.c', + 'enc/fast_log.c', 'enc/histogram.c', 'enc/literal_cost.c', 'enc/memory.c', |