blob: 18f44f23d561b3a53347e68c0bae7873e1972574 (
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
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
color.go
decode.go
encode.go
error.go
json.go
option.go
path.go
query.go
)
GO_TEST_SRCS(
export_test.go
size_test.go
)
GO_XTEST_SRCS(
color_test.go
decode_test.go
encode_test.go
helper_test.go
json_test.go
number_test.go
path_test.go
query_test.go
stream_test.go
tagkey_test.go
)
END()
RECURSE(
gotest
internal
test
)
|