summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/kernel/sched/BUILD
blob: 1b82e087b407293c2ce3e04f275cbc6c4d4df831 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "sched",
    srcs = [
        "cpuset.go",
        "sched.go",
    ],
    visibility = ["//pkg/sentry:internal"],
)

go_test(
    name = "sched_test",
    size = "small",
    srcs = ["cpuset_test.go"],
    library = ":sched",
)