blob: ded51f926f078a8ef73ba0173c535bd6ca10b75b (
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
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
checker.go
checker_err.go
comment.go
doc.go
error.go
format.go
iter.go
mapiter.go
patch.go
patch_go1.14.go
quicktest.go
report.go
)
GO_TEST_SRCS(export_test.go)
GO_XTEST_SRCS(
checker_err_test.go
checker_test.go
cleanup_test.go
comment_test.go
error_test.go
format_test.go
patch_go1.14_test.go
patch_test.go
quicktest_test.go
race_test.go
report_test.go
)
END()
RECURSE(gotest)
|