blob: aa5d4205b7451969b52b1427b4e6f3218cca4c44 [file] [log] [blame]
load("//bazel/go:go_test.bzl", "go_test")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "machine",
srcs = ["machine.go"],
importpath = "go.skia.org/infra/machine/go/machine",
visibility = ["//visibility:public"],
)
go_test(
name = "machine_test",
srcs = ["machine_test.go"],
embed = [":machine"],
deps = [
"//go/deepequal/assertdeep",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)