gvisor/pkg/sentry/device/BUILD

19 lines
402 B
Python
Raw Normal View History

package(licenses = ["notice"])
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
go_library(
name = "device",
srcs = ["device.go"],
importpath = "gvisor.dev/gvisor/pkg/sentry/device",
visibility = ["//pkg/sentry:internal"],
deps = ["//pkg/abi/linux"],
)
go_test(
name = "device_test",
size = "small",
srcs = ["device_test.go"],
embed = [":device"],
)