Skip to content

Commit 70b245e

Browse files
committed
Deal with auto-generated files.
- Update bazel by hack/update-bazel.sh
1 parent 870bbef commit 70b245e

File tree

1 file changed

+5
-0
lines changed
  • staging/src/k8s.io/component-base/metrics

1 file changed

+5
-0
lines changed

staging/src/k8s.io/component-base/metrics/BUILD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
33
go_library(
44
name = "go_default_library",
55
srcs = [
6+
"collector.go",
67
"counter.go",
8+
"desc.go",
79
"gauge.go",
810
"histogram.go",
911
"http.go",
@@ -13,6 +15,7 @@ go_library(
1315
"processstarttime.go",
1416
"registry.go",
1517
"summary.go",
18+
"value.go",
1619
"version.go",
1720
"version_parser.go",
1821
"wrappers.go",
@@ -35,6 +38,7 @@ go_library(
3538
go_test(
3639
name = "go_default_test",
3740
srcs = [
41+
"collector_test.go",
3842
"counter_test.go",
3943
"gauge_test.go",
4044
"histogram_test.go",
@@ -49,6 +53,7 @@ go_test(
4953
"//vendor/github.com/blang/semver:go_default_library",
5054
"//vendor/github.com/prometheus/client_golang/prometheus:go_default_library",
5155
"//vendor/github.com/prometheus/client_golang/prometheus/testutil:go_default_library",
56+
"//vendor/github.com/prometheus/client_model/go:go_default_library",
5257
"//vendor/github.com/prometheus/common/expfmt:go_default_library",
5358
"//vendor/github.com/stretchr/testify/assert:go_default_library",
5459
],

0 commit comments

Comments
 (0)