blob: 7a2c596476a9ab261243c077f176e760f2ffa0dc [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "thresholds",
srcs = ["thresholds.go"],
importpath = "go.skia.org/infra/bisection/go/compare/thresholds",
visibility = ["//visibility:public"],
)
go_test(
name = "thresholds_test",
srcs = ["thresholds_test.go"],
embed = [":thresholds"],
)