blob: 1a8b461baed4fe517a8b0b6622cfb4b60f523833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package(licenses = ["notice"]) # Apache 2.0
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "device",
srcs = ["device.go"],
importpath = "gvisor.googlesource.com/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"],
)
|