blob: 01dbd89bcf1cb328bd96e74be3fdbac51f977ce2 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "gpus",
srcs = ["gpus.go"],
importpath = "go.skia.org/infra/go/gpus",
visibility = ["//visibility:public"],
deps = ["//go/util_generics"],
)
go_test(
name = "gpus_test",
srcs = ["gpus_test.go"],
embed = [":gpus"],
deps = ["@com_github_stretchr_testify//assert"],
)