aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/klauspost/compress/zstd/ya.make
blob: 8fb8cc5048de6c8b8ed6ada70c47352ff9267ed5 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
GO_LIBRARY()

LICENSE(
    Apache-2.0 AND
    BSD-3-Clause AND
    MIT
)

SRCS(
    bitreader.go
    bitwriter.go
    blockdec.go
    blockenc.go
    blocktype_string.go
    bytebuf.go
    bytereader.go
    decodeheader.go
    decoder.go
    decoder_options.go
    dict.go
    enc_base.go
    enc_best.go
    enc_better.go
    enc_dfast.go
    enc_fast.go
    encoder.go
    encoder_options.go
    framedec.go
    frameenc.go
    fse_decoder.go
    fse_encoder.go
    fse_predefined.go
    hash.go
    history.go
    seqdec.go
    seqenc.go
    snappy.go
    zip.go
    zstd.go
)

GO_TEST_SRCS(
    decodeheader_test.go
    decoder_test.go
    dict_test.go
    encoder_options_test.go
    encoder_test.go
    fuzz_test.go
    seqdec_test.go
    snappy_test.go
    zstd_test.go
)

GO_XTEST_SRCS(
    example_test.go
    zip_test.go
)

IF (ARCH_X86_64)
    SRCS(
        fse_decoder_amd64.go
        fse_decoder_amd64.s
        matchlen_amd64.go
        matchlen_amd64.s
        seqdec_amd64.go
        seqdec_amd64.s
    )

    GO_TEST_SRCS(seqdec_amd64_test.go)
ENDIF()

IF (ARCH_ARM64)
    SRCS(
        fse_decoder_generic.go
        matchlen_generic.go
        seqdec_generic.go
    )
ENDIF()

END()

RECURSE(
    gotest
    internal
)