blob: 7c66fec5e56ea9bb239d4465aa7f7af56207e2e6 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "ingestevents",
srcs = ["ingestevents.go"],
importpath = "go.skia.org/infra/perf/go/ingestevents",
visibility = ["//visibility:public"],
deps = [
"//go/paramtools",
"//go/skerr",
"//go/util",
],
)
go_test(
name = "ingestevents_test",
srcs = ["ingestevents_test.go"],
embed = [":ingestevents"],
deps = [
"//go/paramtools",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
],
)