mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
22 lines
444 B
Python
22 lines
444 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_library(
|
|
name = "constraintutil",
|
|
srcs = ["constraintutil.go"],
|
|
marshal = False,
|
|
stateify = False,
|
|
visibility = ["//tools:__subpackages__"],
|
|
)
|
|
|
|
go_test(
|
|
name = "constraintutil_test",
|
|
size = "small",
|
|
srcs = ["constraintutil_test.go"],
|
|
library = ":constraintutil",
|
|
)
|