blob: ad9ad8658c20f5c04d03a543295ee00c2646c953 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "lookup",
srcs = ["lookup.go"],
importpath = "go.skia.org/infra/android_ingest/go/lookup",
visibility = ["//visibility:public"],
deps = [
"//go/git",
"//go/sklog",
],
)
go_test(
name = "lookup_test",
srcs = ["lookup_test.go"],
embed = [":lookup"],
deps = ["@com_github_stretchr_testify//assert"],
)