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

SRCS(
    abi.go
    deepequal.go
    float32reg_generic.go
    makefunc.go
    swapper.go
    type.go
    value.go
    visiblefields.go
)

GO_TEST_SRCS(export_test.go)

GO_XTEST_SRCS(
    abi_test.go
    all_test.go
    benchmark_test.go
    example_test.go
    nih_test.go
    set_test.go
    tostring_test.go
    visiblefields_test.go
)

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

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

END()

RECURSE(
    internal
)