blob: 8864e0c08662d0a47c0de4a2c773ea30b4d777e6 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
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",
],
)