mirror of https://github.com/kubernetes/kops.git
14 lines
482 B
Python
14 lines
482 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["metrics.pb.go"],
|
|
importmap = "k8s.io/kops/vendor/github.com/prometheus/client_model/go",
|
|
importpath = "github.com/prometheus/client_model/go",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/golang/protobuf/proto:go_default_library",
|
|
"//vendor/github.com/golang/protobuf/ptypes/timestamp:go_default_library",
|
|
],
|
|
)
|