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.
27 lines
703 B
27 lines
703 B
7 years ago
|
licenses(["notice"]) # Apache 2
|
||
|
|
||
6 years ago
|
load("@envoy_api//bazel:api_build_system.bzl", "api_go_proto_library", "api_proto_library_internal")
|
||
7 years ago
|
|
||
7 years ago
|
api_proto_library_internal(
|
||
7 years ago
|
name = "rbac",
|
||
|
srcs = ["rbac.proto"],
|
||
7 years ago
|
visibility = ["//visibility:public"],
|
||
7 years ago
|
deps = [
|
||
|
"//envoy/api/v2/core:address",
|
||
7 years ago
|
"//envoy/api/v2/route",
|
||
7 years ago
|
"//envoy/type/matcher:metadata",
|
||
6 years ago
|
"//envoy/type/matcher:string",
|
||
7 years ago
|
],
|
||
|
)
|
||
|
|
||
|
api_go_proto_library(
|
||
|
name = "rbac",
|
||
|
proto = ":rbac",
|
||
|
deps = [
|
||
|
"//envoy/api/v2/core:address_go_proto",
|
||
7 years ago
|
"//envoy/api/v2/route:route_go_proto",
|
||
7 years ago
|
"//envoy/type/matcher:metadata_go_proto",
|
||
6 years ago
|
"//envoy/type/matcher:string_go_proto",
|
||
7 years ago
|
],
|
||
|
)
|