gvisor/pkg/sentry/limits/BUILD

29 lines
549 B
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_test")
load("//tools/go_stateify:defs.bzl", "go_library")
package(licenses = ["notice"])
go_library(
name = "limits",
srcs = [
"context.go",
"limits.go",
"linux.go",
],
importpath = "gvisor.dev/gvisor/pkg/sentry/limits",
visibility = ["//:sandbox"],
deps = [
"//pkg/abi/linux",
"//pkg/sentry/context",
],
)
go_test(
name = "limits_test",
size = "small",
srcs = [
"limits_test.go",
],
embed = [":limits"],
)