aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/crypto/sha1/ya.make
blob: 249b2e1265b2d1883e55e56503efa929cb42d763 (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
GO_LIBRARY()

SRCS(
    boring.go
    sha1.go
    sha1block.go
)

IF (ARCH_X86_64)
    SRCS(
        sha1block_amd64.go
        sha1block_amd64.s
    )
ENDIF()

IF (ARCH_ARM64)
    SRCS(
        sha1block_arm64.go
        sha1block_arm64.s
    )
ENDIF()

END()