File: BUILD

package info (click to toggle)
golang-gvisor-gvisor 0.0~20240729.0-4~bpo12%2B2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-backports
  • size: 21,296 kB
  • sloc: asm: 3,361; ansic: 1,197; cpp: 348; makefile: 92; python: 89; sh: 83
file content (21 lines) | stat: -rw-r--r-- 444 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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",
)