aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/klauspost/compress/zstd/internal/xxhash/ya.make
blob: 2d244961bd93373af1bc4f8bc902a3b1b3b16483 (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
GO_LIBRARY()

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

SRCS(
    xxhash.go
    xxhash_asm.go
    xxhash_safe.go
)

GO_TEST_SRCS(xxhash_test.go)

IF (ARCH_X86_64)
    SRCS(xxhash_amd64.s)
ENDIF()

IF (ARCH_ARM64)
    SRCS(xxhash_arm64.s)
ENDIF()

END()

RECURSE(gotest)