prysm-pulse/shared/sliceutil/BUILD.bazel
Raul Jordan d0bdbe5a33
Add Byte Slice Intersection Utils (#3204)
* remove unused code

* table drive tests for byte slice intersections

* include all table driven tests

* gazelle imports

* imports
2019-08-14 10:27:18 -05:00

19 lines
409 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "go_default_library",
srcs = [
"doc.go",
"slice.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared/sliceutil",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
size = "small",
srcs = ["slice_test.go"],
embed = [":go_default_library"],
)