aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/internal/abi/ya.make
blob: 2b68cbebfbc0c83199b640f31a4a1535bee3fe36 (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
GO_LIBRARY()

SRCS(
    abi.go
    abi_test.s
    compiletype.go
    funcpc.go
    map.go
    stack.go
    stub.s
    symtab.go
    type.go
    unsafestring_go120.go
)

GO_TEST_SRCS(export_test.go)

GO_XTEST_SRCS(abi_test.go)

IF (ARCH_X86_64)
    SRCS(
        abi_amd64.go
    )
ENDIF()

IF (ARCH_ARM64)
    SRCS(
        abi_arm64.go
    )
ENDIF()

END()

RECURSE(
)