blob: b8e0bdcf9e4c648b90b64c978112008a297be611 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "adb",
srcs = ["adb.go"],
importpath = "go.skia.org/infra/sk8s/go/bot_config/adb",
visibility = ["//visibility:public"],
deps = [
"//go/executil",
"//go/skerr",
],
)
go_test(
name = "adb_test",
srcs = ["adb_test.go"],
embed = [":adb"],
deps = [
"//go/executil",
"//go/testutils/unittest",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)