aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/go/_std_1.20/src/internal/goos/ya.make
blob: 904eeb29f1ac92cd874b038707fa04e28ad0230f (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
GO_LIBRARY()

SRCS(
    goos.go
)

IF (OS_DARWIN)
    SRCS(
        unix.go
        zgoos_darwin.go
    )
ENDIF()

IF (OS_LINUX)
    SRCS(
        unix.go
        zgoos_linux.go
    )
ENDIF()

IF (OS_WINDOWS)
    SRCS(
        nonunix.go
        zgoos_windows.go
    )
ENDIF()

END()