blob: c1544dc7184539faaa4fd86b61a5ed031ebc2a4b [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "stats",
srcs = [
"sign_rank.go",
"wilcoxon_signed_rank.go",
"zeroin.go",
],
importpath = "go.skia.org/infra/cabe/go/stats",
visibility = [
"//visibility:public",
],
deps = [
"//go/sklog",
"@com_github_aclements_go_moremath//stats",
],
)
go_test(
name = "stats_test",
srcs = [
"sign_rank_test.go",
"wilcoxon_signed_rank_test.go",
"zeroin_test.go",
],
embed = [":stats"],
race = "on",
)