2019-01-15 06:32:05 -08:00
|
|
|
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 = "go_default_library",
|
|
|
|
srcs = ["main.go"],
|
|
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway",
|
|
|
|
deps = [
|
2020-04-23 03:17:08 -07:00
|
|
|
"//codegenerator:go_default_library",
|
2019-01-15 06:32:05 -08:00
|
|
|
"//protoc-gen-grpc-gateway/descriptor:go_default_library",
|
2020-03-09 07:27:19 -07:00
|
|
|
"//protoc-gen-grpc-gateway/internal/gengateway:go_default_library",
|
2019-01-15 06:32:05 -08:00
|
|
|
"@com_github_golang_glog//:go_default_library",
|
|
|
|
"@com_github_golang_protobuf//proto:go_default_library",
|
|
|
|
"@io_bazel_rules_go//proto/wkt:compiler_plugin_go_proto",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_binary(
|
|
|
|
name = "protoc-gen-grpc-gateway",
|
|
|
|
embed = [":go_default_library"],
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
)
|
|
|
|
|
|
|
|
go_proto_compiler(
|
|
|
|
name = "go_gen_grpc_gateway",
|
2019-04-04 02:55:32 -07:00
|
|
|
options = [
|
|
|
|
"logtostderr=true",
|
|
|
|
"allow_repeated_fields_in_body=true",
|
|
|
|
],
|
2019-01-15 06:32:05 -08:00
|
|
|
plugin = ":protoc-gen-grpc-gateway",
|
|
|
|
suffix = ".pb.gw.go",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
"//runtime:go_default_library",
|
|
|
|
"//utilities:go_default_library",
|
|
|
|
"@com_github_golang_protobuf//proto: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//status:go_default_library",
|
|
|
|
"@org_golang_x_net//context:go_default_library",
|
|
|
|
],
|
|
|
|
)
|