blob: ad0de6a9719ba5a7bbcc97add0e41eec624b9cf1 [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/sklog",
],
)
go_test(
name = "adb_test",
srcs = ["adb_test.go"],
embed = [":adb"],
deps = [
"//go/executil",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)