blob: 80997806acf5cd917460ad17740a085f0ec96581 (
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()
SRCS(
client.go
context.go
errors.go
roles.go
roles_entities_index.go
roles_entities_index_builder.go
roles_opts.go
roles_parser.go
roles_parser_opts.go
roles_types.go
service_ticket.go
tvm.go
user_ticket.go
)
GO_TEST_SRCS(
roles_entities_index_builder_test.go
roles_entities_index_test.go
roles_parser_test.go
roles_test.go
)
GO_XTEST_SRCS(tvm_test.go)
END()
RECURSE(examples)
RECURSE_FOR_TESTS(
cachedtvm
gotest
mocks
tvmauth
tvmtool
)
|