mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
81c4248081
The goal is to remove almost all references to the golang.org/x/net/context package. github.com/gogo/protobuf => v1.2.1 google.golang.org/grpc => v1.19.1 github.com/grpc-ecosystem/grpc-gateway => v1.18.5 It also replaces github.com/cockroachdb/cmux by github.com/soheilhy/cmux because of [1] which fixes #3909 incidentally. [1] https://github.com/grpc/grpc-go/issues/2636 Signed-off-by: Simon Pasquier <spasquie@redhat.com>
23 lines
605 B
Python
23 lines
605 B
Python
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"])
|
|
|
|
proto_library(
|
|
name = "internal_proto",
|
|
srcs = ["stream_chunk.proto"],
|
|
deps = ["@com_google_protobuf//:any_proto"],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "internal_go_proto",
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/internal",
|
|
proto = ":internal_proto",
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
embed = [":internal_go_proto"],
|
|
importpath = "github.com/grpc-ecosystem/grpc-gateway/internal",
|
|
)
|