blob: 762173a2a4af99019a6cab109caa4e682c0a9024 (
plain) (
blame)
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
|
GO_LIBRARY()
LICENSE(
Apache-2.0 AND
BSD-3-Clause AND
MIT
)
SRCS(
decode.go
decode_asm.go
dict.go
encode.go
encode_all.go
encode_best.go
encode_better.go
index.go
lz4convert.go
lz4sconvert.go
reader.go
s2.go
writer.go
)
GO_TEST_SRCS(
decode_test.go
dict_test.go
encode_test.go
fuzz_test.go
lz4convert_test.go
lz4sconvert_test.go
s2_test.go
writer_test.go
)
GO_XTEST_SRCS(
examples_test.go
index_test.go
)
IF (ARCH_X86_64)
SRCS(
decode_amd64.s
encode_amd64.go
encodeblock_amd64.go
encodeblock_amd64.s
)
ENDIF()
IF (ARCH_ARM64)
SRCS(
decode_arm64.s
encode_go.go
)
ENDIF()
END()
RECURSE(gotest)
|