blob: f22ec2f4cec24bae2b9435da4445e631a6a1e69d [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "ios",
srcs = ["ios.go"],
importpath = "go.skia.org/infra/machine/go/test_machine_monitor/ios",
visibility = ["//visibility:public"],
deps = [
"//go/skerr",
"//machine/go/common",
"//machine/go/machine",
],
)
go_test(
name = "ios_test",
srcs = ["ios_test.go"],
embed = [":ios"],
deps = [
"//go/executil",
"//machine/go/machine",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)