aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.21/src/os/exec/ya.make
blob: 686a009edea083d9d81473323cc228b86243bbe4 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
GO_LIBRARY()

SRCS(
    exec.go
)

GO_TEST_SRCS(
    bench_test.go
    env_test.go
    internal_test.go
    lp_test.go
)

GO_XTEST_SRCS(
    dot_test.go
    example_test.go
    exec_test.go
)

IF (OS_LINUX)
    SRCS(
        exec_unix.go
        lp_unix.go
    )

    GO_TEST_SRCS(lp_unix_test.go)

    GO_XTEST_SRCS(
        exec_linux_test.go
        exec_posix_test.go
        exec_unix_test.go
        lp_linux_test.go
    )
ENDIF()

IF (OS_DARWIN)
    SRCS(
        exec_unix.go
        lp_unix.go
    )

    GO_TEST_SRCS(lp_unix_test.go)

    GO_XTEST_SRCS(
        exec_posix_test.go
        exec_unix_test.go
    )
ENDIF()

IF (OS_WINDOWS)
    SRCS(
        exec_windows.go
        lp_windows.go
    )

    GO_XTEST_SRCS(
        exec_windows_test.go
        lp_windows_test.go
    )
ENDIF()

END()

RECURSE(
    internal
)