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