blob: 12bf5d74ab3c447b65ba02efd761be8116255957 [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",
"@com_github_stretchr_testify//require",
],
)