blob: 21fb5ae7415745638267b9a4203c782f6c249f57 (
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
|
GO_LIBRARY()
LICENSE(Apache-2.0)
SRCS(service.go)
GO_TEST_SRCS(service_test.go)
IF (OS_LINUX)
SRCS(func_linux.go)
ENDIF()
IF (OS_LINUX AND ARCH_X86_64)
GO_TEST_SRCS(
service_sktopt_test.go
util_sktopt_amd64_test.go
)
ENDIF()
IF (OS_DARWIN)
SRCS(func_nonlinux.go)
ENDIF()
IF (OS_WINDOWS)
SRCS(func_nonlinux.go)
ENDIF()
END()
RECURSE(gotest)
|