mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
20 lines
516 B
Python
20 lines
516 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
# gazelle:ignore Prevent this tool from using @prysm//tools/go:def.bzl go_library.
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v5/tools/beacon-fuzz",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//io/file:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "beacon-fuzz",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|