blob: 5564a6dbc97438da93de9b291bff4c5a19524e73 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "crd",
srcs = ["crd.go"],
importpath = "go.skia.org/infra/go/prom/crd",
visibility = ["//visibility:public"],
deps = ["//go/prom"],
)
go_test(
name = "crd_test",
srcs = ["crd_test.go"],
embed = [":crd"],
deps = [
"@com_github_stretchr_testify//require",
"@in_gopkg_yaml_v2//:yaml_v2",
],
)