mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-21 03:16:00 -08:00
* *: bump gRPC dependencies This change updates the gRPC dependencies to more recent versions: * github.com/gogo/protobuf => v1.2.0 * github.com/grpc-ecosystem/grpc-gateway => v1.6.3 * google.golang.org/grpc => v1.17.0 In addition scripts/genproto.sh leverages Go modules information instead of hardcoding SHA1 commits. This ensures that the code is generated from the exact same sources. Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Run 'make proto' in CI Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Revert tabs -> spaces change Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix 'make proto' step Signed-off-by: Simon Pasquier <spasquie@redhat.com> * 'go get' grpc/protobuf dependencies Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Prepopulate cache with go mod download Signed-off-by: Simon Pasquier <spasquie@redhat.com>
43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
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 = [
|
|
"//codegenerator:go_default_library",
|
|
"//protoc-gen-grpc-gateway/descriptor:go_default_library",
|
|
"//protoc-gen-grpc-gateway/gengateway:go_default_library",
|
|
"@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",
|
|
options = ["logtostderr=true"],
|
|
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",
|
|
],
|
|
)
|