summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/platform/interrupt/BUILD
blob: dbafa320406727d45fc784bb295a8de320d2bff0 (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"])  # Apache 2.0

go_library(
    name = "interrupt",
    srcs = [
        "interrupt.go",
    ],
    importpath = "gvisor.googlesource.com/gvisor/pkg/sentry/platform/interrupt",
    visibility = ["//pkg/sentry:internal"],
)

go_test(
    name = "interrupt_test",
    size = "small",
    srcs = ["interrupt_test.go"],
    embed = [":interrupt"],
)