| 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"], | |
| ) |