blob: 2b125032a02eae412ffd82c8d13a3e49fe7da7f1 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "linux",
srcs = ["linux.go"],
importpath = "go.skia.org/infra/machine/go/test_machine_monitor/standalone/linux",
visibility = ["//visibility:public"],
deps = [
"//go/gpus",
"//go/skerr",
"//go/util",
"//go/util_generics",
"//machine/go/test_machine_monitor/standalone/crossplatform",
"@com_github_kballard_go_shellquote//:go-shellquote",
],
)
go_test(
name = "linux_test",
srcs = ["linux_test.go"],
embed = [":linux"],
deps = [
"//go/gpus",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)