prysm-pulse/shared/sliceutil/BUILD.bazel
Preston Van Loon dfc64121c6
Remove unused feature flags (#3002)
* remove a few feature flags that are no longer needed

* remove other unused flags

* forgot a few more
2019-07-19 21:27:35 -04:00

24 lines
555 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",
"slice_generic.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared/sliceutil",
visibility = ["//visibility:public"],
)
go_test(
name = "go_default_test",
size = "small",
srcs = [
"slice_generic_test.go",
"slice_test.go",
],
embed = [":go_default_library"],
deps = ["@com_github_prysmaticlabs_go_ssz//:go_default_library"],
)