mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
23 lines
391 B
Python
23 lines
391 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
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",
|
|
)
|