blob: cf38d349684ee914df98d5a17b3da17d22fd732c [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "mac",
srcs = ["mac.go"],
importpath = "go.skia.org/infra/machine/go/test_machine_monitor/standalone/mac",
visibility = ["//visibility:public"],
deps = [
"//go/gpus",
"//go/skerr",
"//go/sklog",
"@net_howett_plist//:plist",
],
)
go_test(
name = "mac_test",
srcs = ["mac_test.go"],
embed = [":mac"],
deps = ["@com_github_stretchr_testify//assert"],
)