blob: e79117046a16831a482cbd8adf5d13eb3ab1d92c [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "publicparams",
srcs = ["publicparams.go"],
importpath = "go.skia.org/infra/golden/go/publicparams",
visibility = ["//visibility:public"],
deps = [
"//go/paramtools",
"//go/skerr",
"//golden/go/types",
],
)
go_test(
name = "publicparams_test",
srcs = ["publicparams_test.go"],
embed = [":publicparams"],
deps = [
"//go/paramtools",
"//go/testutils/unittest",
"//golden/go/types",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)