mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
17 lines
453 B
Python
17 lines
453 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/tools/beacon-fuzz",
|
||
|
visibility = ["//visibility:private"],
|
||
|
)
|
||
|
|
||
|
go_binary(
|
||
|
name = "beacon-fuzz",
|
||
|
embed = [":go_default_library"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|