blob: 19d8337fae13419dcf4b198bfee3ac236b9598f4 (
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
|
GO_LIBRARY()
SRCS(
cert_pool.go
notboring.go
parser.go
pem_decrypt.go
pkcs1.go
pkcs8.go
root.go
sec1.go
verify.go
x509.go
)
GO_TEST_SRCS(
cert_pool_test.go
name_constraints_test.go
parser_test.go
pem_decrypt_test.go
pkcs8_test.go
platform_test.go
root_test.go
sec1_test.go
verify_test.go
x509_test.go
)
GO_XTEST_SRCS(
example_test.go
hybrid_pool_test.go
)
IF (OS_LINUX)
SRCS(
root_linux.go
root_unix.go
)
GO_TEST_SRCS(root_unix_test.go)
ENDIF()
IF (OS_DARWIN)
SRCS(
root_darwin.go
)
GO_XTEST_SRCS(root_darwin_test.go)
ENDIF()
IF (OS_WINDOWS)
SRCS(
root_windows.go
)
GO_XTEST_SRCS(root_windows_test.go)
ENDIF()
END()
RECURSE(
internal
pkix
)
|