blob: 2d1cb2e9943d6af15de92082d4de2f61904906fa (
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
41
42
43
|
GO_LIBRARY()
LICENSE(Apache-2.0)
SRCS(
attributes.go
authority.go
client.go
client_new.go
clientimpl.go
clientimpl_authority.go
clientimpl_dump.go
clientimpl_loadreport.go
clientimpl_watchers.go
logging.go
requests_counter.go
singleton.go
)
GO_TEST_SRCS(
# authority_test.go
# client_test.go
# loadreport_test.go
# requests_counter_test.go
# singleton_test.go
)
GO_XTEST_SRCS(
# xdsclient_test.go
)
END()
RECURSE(
bootstrap
# e2e_test
# gotest
load
tests
transport
xdslbregistry
xdsresource
)
|