gvisor/pkg/segment/BUILD

32 lines
491 B
Python
Raw Normal View History

package(
default_visibility = ["//:sandbox"],
licenses = ["notice"], # Apache 2.0
)
load("//tools/go_generics:defs.bzl", "go_template")
go_template(
name = "generic_range",
srcs = ["range.go"],
types = [
"T",
],
)
go_template(
name = "generic_set",
srcs = [
"set.go",
"set_state.go",
],
opt_consts = [
"minDegree",
],
types = [
"Key",
"Range",
"Value",
"Functions",
],
)