blob: 387e1ac2ef3d999d2aa659a3a7f0cf695f29f42d (
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
|
GO_LIBRARY()
LICENSE(Apache-2.0)
SRCS(
doc.go
logging.go
metadata.go
middleware.go
ordered_group.go
stack.go
stack_values.go
step_build.go
step_deserialize.go
step_finalize.go
step_initialize.go
step_serialize.go
)
GO_TEST_SRCS(
metadata_test.go
middleware_test.go
ordered_group_test.go
shared_test.go
stack_test.go
stack_values_test.go
)
GO_XTEST_SRCS(logging_test.go)
END()
RECURSE(
gotest
)
|