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

SRCS(
    common.go
    format.go
    reader.go
    strconv.go
    writer.go
)

GO_TEST_SRCS(
    fuzz_test.go
    reader_test.go
    strconv_test.go
    tar_test.go
    writer_test.go
)

GO_XTEST_SRCS(example_test.go)

IF (OS_LINUX)
    SRCS(
        stat_actime1.go
        stat_unix.go
    )
ENDIF()

IF (OS_DARWIN)
    SRCS(
        stat_actime2.go
        stat_unix.go
    )
ENDIF()

END()

RECURSE(
)