mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
|
load("@rules_proto//proto:defs.bzl", "proto_library")
|
||
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
||
|
|
||
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
filegroup(
|
||
|
name = "options_proto_files",
|
||
|
srcs = [
|
||
|
"annotations.proto",
|
||
|
"openapiv2.proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_library(
|
||
|
name = "options",
|
||
|
srcs = [
|
||
|
"annotations.pb.go",
|
||
|
"openapiv2.pb.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options",
|
||
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options",
|
||
|
deps = [
|
||
|
"@org_golang_google_protobuf//reflect/protoreflect:go_default_library",
|
||
|
"@org_golang_google_protobuf//runtime/protoimpl:go_default_library",
|
||
|
"@org_golang_google_protobuf//types/descriptorpb:go_default_library",
|
||
|
"@org_golang_google_protobuf//types/known/structpb:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
proto_library(
|
||
|
name = "options_proto",
|
||
|
srcs = [
|
||
|
"annotations.proto",
|
||
|
"openapiv2.proto",
|
||
|
],
|
||
|
deps = [
|
||
|
"@com_google_protobuf//:descriptor_proto",
|
||
|
"@com_google_protobuf//:struct_proto",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_proto_library(
|
||
|
name = "options_go_proto",
|
||
|
compilers = ["//:go_apiv2"],
|
||
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2/options",
|
||
|
proto = ":options_proto",
|
||
|
)
|