blob: 7aa8def55254100db1250d5524889476c7b87fe6 [file] [log] [blame]
licenses(["notice"])
cc_library(
name = "lz4",
srcs = [
"lz4.c",
"lz4frame.c",
"lz4hc.c",
"xxhash.c",
],
hdrs = [
# lz4hc.c tries to #include lz4.c....
"lz4.c",
"lz4.h",
"lz4frame.h",
"lz4hc.h",
"xxhash.h",
],
include_prefix = "lz4",
includes = ["."],
visibility = ["//visibility:public"],
)