summaryrefslogtreecommitdiffhomepage
path: root/pkg/ilist/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/ilist/BUILD')
-rw-r--r--pkg/ilist/BUILD7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkg/ilist/BUILD b/pkg/ilist/BUILD
index b26a39132..1bd71b800 100644
--- a/pkg/ilist/BUILD
+++ b/pkg/ilist/BUILD
@@ -28,6 +28,7 @@ go_template_instance(
prefix = "direct",
template = ":generic_list",
types = {
+ "Element": "*direct",
"Linker": "*direct",
},
)
@@ -47,6 +48,10 @@ go_template(
srcs = [
"list.go",
],
- opt_types = ["Linker"],
+ opt_types = [
+ "Element",
+ "ElementMapper",
+ "Linker",
+ ],
visibility = ["//visibility:public"],
)