blob: f7feb86831b7637a8512f0266b0cb482d7664758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
load("//tools:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "testutil",
testonly = 1,
srcs = [
"testutil.go",
"testutil_amd64.go",
"testutil_amd64.s",
"testutil_arm64.go",
"testutil_arm64.s",
],
visibility = ["//pkg/sentry/platform/kvm:__pkg__"],
deps = ["//pkg/sentry/arch"],
)
|