blob: 827007c884a5bdbcdaa8f8f862d652628441c2a5 (
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()
LICENSE(MIT)
SRCS(
accessors.go
conversions.go
doc.go
map.go
mutations.go
security.go
tests.go
type_specific.go
type_specific_codegen.go
value.go
)
GO_XTEST_SRCS(
accessors_test.go
conversions_test.go
fixture_test.go
map_test.go
mutations_test.go
security_test.go
simple_example_test.go
tests_test.go
type_specific_codegen_test.go
type_specific_test.go
value_test.go
)
END()
RECURSE(
gotest
)
|