blob: 6dd9440f1f0dfb6e6577f73f78d06a5f70872b6b (
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
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
auth_scram.go
config.go
doc.go
errors.go
krb5.go
pgconn.go
)
GO_TEST_SRCS(
benchmark_private_test.go
export_test.go
pgconn_private_test.go
)
GO_XTEST_SRCS(
# benchmark_test.go # st/YMAKE-102
# config_test.go
# errors_test.go # st/YMAKE-102
# helper_test.go # st/YMAKE-102
# pgconn_stress_test.go # st/YMAKE-102
# pgconn_test.go
)
IF (OS_LINUX)
SRCS(defaults.go)
ENDIF()
IF (OS_DARWIN)
SRCS(defaults.go)
ENDIF()
IF (OS_WINDOWS)
SRCS(defaults_windows.go)
ENDIF()
END()
RECURSE(
gotest
internal
)
|