github.com/prysmaticlabs/prysm@v1.4.4/contracts/deposit-contract/BUILD.bazel (about)

     1  load("@prysm//tools/go:def.bzl", "go_library", "go_test")
     2  
     3  go_library(
     4      name = "go_default_library",
     5      srcs = [
     6          "ETH1logs.go",
     7          "depositContract.go",
     8          "testutils.go",
     9      ],
    10      importpath = "github.com/prysmaticlabs/prysm/contracts/deposit-contract",
    11      visibility = ["//visibility:public"],
    12      deps = [
    13          "@com_github_ethereum_go_ethereum//:go_default_library",
    14          "@com_github_ethereum_go_ethereum//accounts/abi:go_default_library",
    15          "@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
    16          "@com_github_ethereum_go_ethereum//accounts/abi/bind/backends:go_default_library",
    17          "@com_github_ethereum_go_ethereum//common:go_default_library",
    18          "@com_github_ethereum_go_ethereum//core:go_default_library",
    19          "@com_github_ethereum_go_ethereum//core/types:go_default_library",
    20          "@com_github_ethereum_go_ethereum//crypto:go_default_library",
    21          "@com_github_ethereum_go_ethereum//event:go_default_library",
    22          "@com_github_pkg_errors//:go_default_library",
    23      ],
    24  )
    25  
    26  go_test(
    27      name = "go_default_test",
    28      size = "medium",
    29      srcs = [
    30          "depositContract_test.go",
    31          "deposit_tree_test.go",
    32      ],
    33      deps = [
    34          ":go_default_library",
    35          "//shared/interop:go_default_library",
    36          "//shared/params:go_default_library",
    37          "//shared/testutil/assert:go_default_library",
    38          "//shared/testutil/require:go_default_library",
    39          "//shared/trieutil:go_default_library",
    40          "@com_github_ethereum_go_ethereum//:go_default_library",
    41          "@com_github_ethereum_go_ethereum//accounts/abi/bind:go_default_library",
    42          "@com_github_ethereum_go_ethereum//common:go_default_library",
    43      ],
    44  )