You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
746 B
37 lines
746 B
load("@envoy_api//bazel:api_build_system.bzl", "api_proto_library_internal", "api_proto_package") |
|
|
|
licenses(["notice"]) # Apache 2 |
|
|
|
api_proto_package( |
|
name = "cluster", |
|
deps = [ |
|
"//envoy/api/v2/core", |
|
], |
|
) |
|
|
|
api_proto_library_internal( |
|
name = "circuit_breaker", |
|
srcs = ["circuit_breaker.proto"], |
|
visibility = [ |
|
"//envoy/api/v2:__pkg__", |
|
], |
|
deps = [ |
|
"//envoy/api/v2/core:base", |
|
], |
|
) |
|
|
|
api_proto_library_internal( |
|
name = "outlier_detection", |
|
srcs = ["outlier_detection.proto"], |
|
visibility = [ |
|
"//envoy/api/v2:__pkg__", |
|
], |
|
) |
|
|
|
api_proto_library_internal( |
|
name = "filter", |
|
srcs = ["filter.proto"], |
|
visibility = [ |
|
"//envoy/api/v2:__pkg__", |
|
], |
|
)
|
|
|