blob: aa28114b340218fa2a43d4d0e7f985cc3f65a5d7 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "paramreducer",
srcs = ["paramreducer.go"],
importpath = "go.skia.org/infra/go/paramreducer",
visibility = ["//visibility:public"],
deps = [
"//go/paramtools",
"//go/query",
"//go/util",
],
)
go_test(
name = "paramreducer_test",
srcs = ["paramreducer_test.go"],
embed = [":paramreducer"],
deps = [
"//go/paramtools",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)