-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBUCK
More file actions
62 lines (58 loc) · 742 Bytes
/
BUCK
File metadata and controls
62 lines (58 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
cxx_library(
name = 'bzip2',
header_namespace = '',
exported_headers = [
'bzlib.h',
],
headers = glob([
'*.h',
]),
srcs = [
'blocksort.c',
'huffman.c',
'crctable.c',
'randtable.c',
'compress.c',
'decompress.c',
'bzlib.c',
],
visibility = [
'PUBLIC',
],
)
cxx_binary(
name = 'bzip2-tool',
srcs = [
'bzip2.c',
],
deps = [
':bzip2',
],
)
cxx_binary(
name = 'dlltest',
srcs = [
'dlltest.c',
],
deps = [
':bzip2',
],
)
cxx_binary(
name = 'mk251',
srcs = [
'mk251.c',
],
deps = [
':bzip2',
],
)
cxx_binary(
name = 'unzcrash',
srcs = [
'unzcrash.c',
],
deps = [
':bzip2',
],
)