James Kuszmaul | 5ab990d | 2022-11-07 16:35:49 -0800 | [diff] [blame] | 1 | licenses(["notice"]) |
2 | |||||
3 | cc_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 | ) |