mirror of
https://github.com/google/brotli.git
synced 2024-11-24 12:30:15 +00:00
39ef4bbdcf
Add CLI for dictionary generation. Add BUILD file for research folder
30 lines
482 B
Python
Executable File
30 lines
482 B
Python
Executable File
# 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",
|
|
],
|
|
)
|