blob: 9b8f48a30d02cc2d83a37a45f85cbf309c37edf1 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "upload",
srcs = ["upload.go"],
importpath = "go.skia.org/infra/android_ingest/go/upload",
visibility = ["//visibility:public"],
deps = ["//perf/go/ingest/format"],
)
go_test(
name = "upload_test",
srcs = ["upload_test.go"],
embed = [":upload"],
deps = [
"//go/testutils/unittest",
"//perf/go/ingest/format",
"@com_github_stretchr_testify//assert",
],
)