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.
29 lines
659 B
29 lines
659 B
5 years ago
|
load("@envoy_api//bazel:api_build_system.bzl", "api_go_proto_library", "api_proto_library_internal")
|
||
|
|
||
|
licenses(["notice"]) # Apache 2
|
||
|
|
||
|
api_proto_library_internal(
|
||
|
name = "attribute_context",
|
||
|
srcs = [
|
||
|
"attribute_context.proto",
|
||
|
],
|
||
|
deps = [
|
||
|
"//envoy/api/v3alpha/core:address",
|
||
|
"//envoy/api/v3alpha/core:base",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
api_proto_library_internal(
|
||
|
name = "external_auth",
|
||
|
srcs = [
|
||
|
"external_auth.proto",
|
||
|
],
|
||
|
has_services = 1,
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
":attribute_context",
|
||
|
"//envoy/api/v3alpha/core:base",
|
||
|
"//envoy/type:http_status",
|
||
|
],
|
||
|
)
|