summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/platform/interrupt/BUILD
blob: b6d008dbeed38c142cc5b242b494dacdcc59e668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
load("//tools/go_stateify:defs.bzl", "go_library")
load("@io_bazel_rules_go//go:def.bzl", "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"],
)