blob: eeb634644db9a19be5315cbc1ed598ef10beb812 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
load("//tools/go_stateify:defs.bzl", "go_library", "go_test")
package(licenses = ["notice"])
go_library(
name = "interrupt",
srcs = [
"interrupt.go",
],
importpath = "gvisor.dev/gvisor/pkg/sentry/platform/interrupt",
visibility = ["//pkg/sentry:internal"],
)
go_test(
name = "interrupt_test",
size = "small",
srcs = ["interrupt_test.go"],
embed = [":interrupt"],
)
|