blob: 6ee41801700cf2f753a59f5fcef29610e61fbad3 [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/gpus",
"//go/skerr",
],
)
go_test(
name = "windows_test",
srcs = ["windows_test.go"],
embed = [":windows"],
deps = [
"//go/gpus",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)