blob: b788db64ee9b51893feacd91c752c9c214738a8d [file] [log] [blame]
load("@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"],
)