blob: 8f1536c2a3d40aefeb5e41f57aaed027d6800d38 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "silence",
srcs = ["silence.go"],
importpath = "go.skia.org/infra/am/go/silence",
visibility = ["//visibility:public"],
deps = [
"//am/go/note",
"//go/ds",
"//go/human",
"//go/paramtools",
"//go/sklog",
"@com_google_cloud_go_datastore//:datastore",
],
)
go_test(
name = "silence_test",
srcs = ["silence_test.go"],
embed = [":silence"],
deps = [
"//am/go/note",
"//go/ds",
"//go/ds/testutil",
"//go/paramtools",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)