aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/compress/flate/ya.make
blob: 163761b9e2052e51e18ee59c768fdf00fd726967 (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
GO_LIBRARY()

SRCS(
    deflate.go
    deflatefast.go
    dict_decoder.go
    huffman_bit_writer.go
    huffman_code.go
    inflate.go
    token.go
)

GO_TEST_SRCS(
    deflate_test.go
    dict_decoder_test.go
    flate_test.go
    huffman_bit_writer_test.go
    inflate_test.go
    reader_test.go
    writer_test.go
)

GO_XTEST_SRCS(example_test.go)

END()

RECURSE(
)