- Update BUILD file content for compatibility with envoy-proxy 1.12.2. OBS-URL: https://build.opensuse.org/request/show/765240 OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/prometheus-client-model?expand=0&rev=5
18 lines
464 B
Python
18 lines
464 B
Python
load("@envoy_api//bazel:api_build_system.bzl", "api_cc_py_proto_library")
|
|
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
|
|
|
|
api_cc_py_proto_library(
|
|
name = "client_model",
|
|
srcs = [
|
|
"metrics.proto",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_proto_library(
|
|
name = "client_model_go_proto",
|
|
importpath = "github.com/prometheus/client_model/go",
|
|
proto = ":client_model",
|
|
visibility = ["//visibility:public"],
|
|
)
|