blob: 7aa8def55254100db1250d5524889476c7b87fe6 [file] [log] [blame]
James Kuszmaul5ab990d2022-11-07 16:35:49 -08001licenses(["notice"])
2
3cc_library(
4 name = "lz4",
5 srcs = [
6 "lz4.c",
7 "lz4frame.c",
8 "lz4hc.c",
9 "xxhash.c",
10 ],
11 hdrs = [
12 # lz4hc.c tries to #include lz4.c....
13 "lz4.c",
14 "lz4.h",
15 "lz4frame.h",
16 "lz4hc.h",
17 "xxhash.h",
18 ],
19 include_prefix = "lz4",
20 includes = ["."],
21 visibility = ["//visibility:public"],
22)