mirror of
https://github.com/google/brotli.git
synced 2024-11-22 11:40:06 +00:00
30 lines
482 B
Python
30 lines
482 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 = "sieve",
|
||
|
srcs = ["sieve.cc"],
|
||
|
hdrs = ["sieve.h"],
|
||
|
)
|
||
|
|
||
|
cc_binary(
|
||
|
name = "dictionary_generator",
|
||
|
srcs = ["dictionary_generator.cc"],
|
||
|
deps = [
|
||
|
":dm",
|
||
|
":sieve",
|
||
|
],
|
||
|
)
|