blob: 7d6a073835ce3e42173d230bdb61a3fca2540a41 [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/machine/go/test_machine_monitor/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",
],
)