blob: df3355071edc6f3247fccd5f738570ddef0d8a39 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "dataframe",
srcs = [
"async.go",
"dataframe.go",
],
importpath = "go.skia.org/infra/perf/go/dataframe",
visibility = ["//visibility:public"],
deps = [
"//go/calc",
"//go/paramtools",
"//go/query",
"//go/skerr",
"//go/sklog",
"//go/timer",
"//go/vec32",
"//perf/go/config",
"//perf/go/git",
"//perf/go/progress",
"//perf/go/shortcut",
"//perf/go/types",
"@io_opencensus_go//trace",
],
)
go_test(
name = "dataframe_test",
srcs = [
"async_test.go",
"dataframe_test.go",
],
data = ["//perf/migrations:cockroachdb"],
embed = [":dataframe"],
deps = [
"//go/paramtools",
"//go/testutils/unittest",
"//go/vec32",
"//perf/go/config",
"//perf/go/git",
"//perf/go/git/gittest",
"//perf/go/progress",
"//perf/go/types",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)