aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas.ru@gmail.com>2021-08-04 14:42:02 +0200
committerGitHub <noreply@github.com>2021-08-04 14:42:02 +0200
commit19d86fb9a60aa7034d4981b69a5b656f5b90017e (patch)
tree603765aee7a83b4777b88152bbe38fa5c25710cb /setup.py
parent630b5084ee255549d25d6da7ec50b7a53861d95a (diff)
downloadbrotli-19d86fb9a60aa7034d4981b69a5b656f5b90017e.zip
brotli-19d86fb9a60aa7034d4981b69a5b656f5b90017e.tar.gz
brotli-19d86fb9a60aa7034d4981b69a5b656f5b90017e.tar.bz2
Merge-in SharedDictionary feature (#916)
Co-authored-by: Eugene Kliuchnikov <eustas@chromium.org>
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 25626ec..3afb035 100644
--- a/setup.py
+++ b/setup.py
@@ -185,6 +185,7 @@ EXT_MODULES = [
'c/common/context.c',
'c/common/dictionary.c',
'c/common/platform.c',
+ 'c/common/shared_dictionary.c',
'c/common/transform.c',
'c/dec/bit_reader.c',
'c/dec/decode.c',
@@ -197,6 +198,7 @@ EXT_MODULES = [
'c/enc/brotli_bit_stream.c',
'c/enc/cluster.c',
'c/enc/command.c',
+ 'c/enc/compound_dictionary.c',
'c/enc/compress_fragment.c',
'c/enc/compress_fragment_two_pass.c',
'c/enc/dictionary_hash.c',
@@ -216,6 +218,7 @@ EXT_MODULES = [
'c/common/context.h',
'c/common/dictionary.h',
'c/common/platform.h',
+ 'c/common/shared_dictionary_internal.h',
'c/common/transform.h',
'c/common/version.h',
'c/dec/bit_reader.h',
@@ -234,6 +237,7 @@ EXT_MODULES = [
'c/enc/cluster.h',
'c/enc/cluster_inc.h',
'c/enc/command.h',
+ 'c/enc/compound_dictionary.h',
'c/enc/compress_fragment.h',
'c/enc/compress_fragment_two_pass.h',
'c/enc/dictionary_hash.h',