blob: a1bb2ce0a9470db8594ea5028796393944c8d009 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "skerr",
srcs = ["skerr.go"],
importpath = "go.skia.org/infra/go/skerr",
visibility = ["//visibility:public"],
)
go_test(
name = "skerr_test",
srcs = ["skerr_test.go"],
deps = [
":skerr",
"//go/skerr/alpha_test",
"//go/skerr/beta_test",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)