blob: 6bd49e8250c3ffcaeeb2208e8fb1a0ec4ea3ecb4 [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"],
deps = ["//go/now"],
)
go_test(
name = "machine_test",
srcs = ["machine_test.go"],
embed = [":machine"],
deps = [
"//go/deepequal/assertdeep",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)