blob: 6b5e9e268c91062878bd8870366f1a0ca8c29eaa [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 = [
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
"@in_gopkg_yaml_v2//:yaml_v2",
],
)