blob: 7eb64b4e0e1ba6b38b4b59994c1e7b840060fa65 (
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
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
bool.go
bool_ext.go
doc.go
duration.go
duration_ext.go
error.go
error_ext.go
float32.go
float32_ext.go
float64.go
float64_ext.go
gen.go
int32.go
int64.go
nocmp.go
pointer_go118.go
pointer_go119.go
string.go
string_ext.go
time.go
time_ext.go
uint32.go
uint64.go
uintptr.go
unsafe_pointer.go
value.go
)
GO_TEST_SRCS(
assert_test.go
bool_test.go
duration_test.go
error_test.go
float32_test.go
float64_test.go
int32_test.go
int64_test.go
nocmp_test.go
pointer_test.go
stress_test.go
string_test.go
time_test.go
uint32_test.go
uint64_test.go
uintptr_test.go
unsafe_pointer_test.go
value_test.go
)
GO_XTEST_SRCS(example_test.go)
END()
RECURSE(internal)
IF (NOT OPENSOURCE)
RECURSE(gotest)
ENDIF()
|