github.com/sercand/please@v13.4.0+incompatible/src/metrics/BUILD (about)

     1  go_library(
     2      name = "metrics",
     3      srcs = ["prometheus.go"],
     4      visibility = ["PUBLIC"],
     5      deps = [
     6          "//src/core",
     7          "//third_party/go:logging",
     8          "//third_party/go:prometheus",
     9          "//third_party/go:shlex",
    10      ],
    11  )
    12  
    13  go_test(
    14      name = "prometheus_test",
    15      srcs = ["prometheus_test.go"],
    16      flaky = True,
    17      deps = [
    18          ":metrics",
    19          "//third_party/go:testify",
    20      ],
    21  )