blob: eb6013bd5811178c21db190b053c5de6c18d2129 (
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
44
45
46
|
GO_LIBRARY()
LICENSE(Apache-2.0)
SRCS(
cluster_resource_type.go
endpoints_resource_type.go
errors.go
filter_chain.go
listener_resource_type.go
logging.go
matcher.go
matcher_path.go
name.go
resource_type.go
route_config_resource_type.go
type.go
type_cds.go
type_eds.go
type_lds.go
type_rds.go
unmarshal_cds.go
unmarshal_eds.go
unmarshal_lds.go
unmarshal_rds.go
)
GO_TEST_SRCS(
filter_chain_test.go
matcher_path_test.go
matcher_test.go
name_test.go
test_utils_test.go
unmarshal_cds_test.go
unmarshal_eds_test.go
unmarshal_lds_test.go
unmarshal_rds_test.go
)
END()
RECURSE(
gotest
tests
version
)
|