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