blob: 237de000a41d7560785acaaab9169797980638a0 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
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/vec32",
"//perf/go/types",
"@com_github_stretchr_testify//assert",
],
)