mirror of
https://github.com/google/brotli.git
synced 2024-11-21 19:20:09 +00:00
7f740f1308
- fix formatting - fix type conversion - fix no-op arithmetic with null-pointer - improve performance of hash_longest_match64 - go: detect read after close - java decoder: support compound dictionary - remove executable flag on non-scripts
45 lines
788 B
Python
45 lines
788 B
Python
# Description: brotli research tools.
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
cc_library(
|
|
name = "dm",
|
|
srcs = ["deorummolae.cc"],
|
|
hdrs = [
|
|
"deorummolae.h",
|
|
"esaxx/sais.hxx",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "durchschlag",
|
|
srcs = ["durchschlag.cc"],
|
|
hdrs = ["durchschlag.h"],
|
|
deps = ["@divsufsort//:libdivsufsort"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "sieve",
|
|
srcs = ["sieve.cc"],
|
|
hdrs = ["sieve.h"],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "dictionary_generator",
|
|
srcs = ["dictionary_generator.cc"],
|
|
deps = [
|
|
":dm",
|
|
":durchschlag",
|
|
":sieve",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "brotli_decoder",
|
|
srcs = ["brotli_decoder.c"],
|
|
linkstatic = 1,
|
|
deps = ["@org_brotli//:brotlidec"],
|
|
)
|