mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
16 lines
558 B
Python
16 lines
558 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["ssz_static.go"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/testing/spectest/shared/gloas/ssz_static",
|
|
visibility = ["//testing/spectest:__subpackages__"],
|
|
deps = [
|
|
"//proto/engine/v1:go_default_library",
|
|
"//proto/prysm/v1alpha1:go_default_library",
|
|
"//testing/spectest/shared/common/ssz_static:go_default_library",
|
|
"@com_github_prysmaticlabs_fastssz//:go_default_library",
|
|
],
|
|
)
|