blob: 9f6461a2685994d4fe97d992f8a4433a944ad305 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "stepfit",
srcs = ["stepfit.go"],
importpath = "go.skia.org/infra/perf/go/stepfit",
visibility = ["//visibility:public"],
deps = [
"//go/vec32",
"//perf/go/types",
"@com_github_aclements_go_moremath//stats",
],
)
go_test(
name = "stepfit_test",
srcs = ["stepfit_test.go"],
embed = [":stepfit"],
deps = [
"//go/testutils/unittest",
"//go/vec32",
"//perf/go/types",
"@com_github_stretchr_testify//assert",
],
)