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
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
load("@io_bazel_rules_go//proto:compiler.bzl", "go_proto_compiler")
package(default_visibility = ["//visibility:private"])
go_library(
name = "protoc-gen-grpc-gateway_lib",
srcs = ["main.go"],
importpath = "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway",
deps = [
"//internal/codegenerator",
"//internal/descriptor",
"//protoc-gen-grpc-gateway/internal/gengateway",
"@com_github_golang_glog//:glog",
"@org_golang_google_protobuf//compiler/protogen",
],
)
go_binary(
name = "protoc-gen-grpc-gateway",
embed = [":protoc-gen-grpc-gateway_lib"],
visibility = ["//visibility:public"],
)
go_proto_compiler(
name = "go_gen_grpc_gateway",
options = [
"logtostderr=true",
"allow_repeated_fields_in_body=true",
],
plugin = ":protoc-gen-grpc-gateway",
suffix = ".pb.gw.go",
visibility = ["//visibility:public"],
deps = [
"//runtime:go_default_library",
"//utilities:go_default_library",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//codes:go_default_library",
"@org_golang_google_grpc//grpclog:go_default_library",
"@org_golang_google_grpc//metadata:go_default_library",
"@org_golang_google_grpc//status:go_default_library",
"@org_golang_google_protobuf//proto:go_default_library",
],
)
|