load("@prysm//tools/go:def.bzl", "go_library", "go_test") go_library( name = "go_default_library", srcs = [ "checkpoint.go", "client.go", "doc.go", "errors.go", ], importpath = "github.com/prysmaticlabs/prysm/api/client/beacon", visibility = ["//visibility:public"], deps = [ "//beacon-chain/core/helpers:go_default_library", "//beacon-chain/rpc/apimiddleware:go_default_library", "//beacon-chain/state:go_default_library", "//encoding/bytesutil:go_default_library", "//encoding/ssz/detect:go_default_library", "//io/file:go_default_library", "//network/forks:go_default_library", "//proto/prysm/v1alpha1:go_default_library", "//proto/prysm/v1alpha1/block:go_default_library", "//runtime/version:go_default_library", "//time/slots:go_default_library", "@com_github_ethereum_go_ethereum//common/hexutil:go_default_library", "@com_github_pkg_errors//:go_default_library", "@com_github_prysmaticlabs_eth2_types//:go_default_library", "@com_github_sirupsen_logrus//:go_default_library", "@org_golang_x_mod//semver:go_default_library", ], ) go_test( name = "go_default_test", srcs = [ "checkpoint_test.go", "client_test.go", ], embed = [":go_default_library"], deps = [ "//beacon-chain/state:go_default_library", "//config/params:go_default_library", "//encoding/ssz/detect:go_default_library", "//network/forks:go_default_library", "//proto/prysm/v1alpha1:go_default_library", "//proto/prysm/v1alpha1/wrapper:go_default_library", "//runtime/version:go_default_library", "//testing/require:go_default_library", "//testing/util:go_default_library", "//time/slots:go_default_library", "@com_github_pkg_errors//:go_default_library", "@com_github_prysmaticlabs_eth2_types//:go_default_library", ], )