blob: e58c78891a1a01e5748e3b2a025add744d8cf0eb (
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
|
GO_LIBRARY()
SRCS(
decode.go
encode.go
fold.go
indent.go
scanner.go
stream.go
tables.go
tags.go
)
GO_TEST_SRCS(
bench_test.go
decode_test.go
encode_test.go
fold_test.go
fuzz_test.go
number_test.go
scanner_test.go
stream_test.go
tagkey_test.go
tags_test.go
)
GO_XTEST_SRCS(
example_marshaling_test.go
example_test.go
example_text_marshaling_test.go
)
END()
RECURSE(
)
|