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