github.com/gnattishness/bazel-go-ethereum@v0.0.0-20190929123618-7022a154f56d/cmd/puppeth/BUILD.bazel (about) 1 load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test") 2 3 go_library( 4 name = "go_default_library", 5 srcs = [ 6 "genesis.go", 7 "module.go", 8 "module_dashboard.go", 9 "module_ethstats.go", 10 "module_explorer.go", 11 "module_faucet.go", 12 "module_nginx.go", 13 "module_node.go", 14 "module_wallet.go", 15 "puppeth.go", 16 "ssh.go", 17 "wizard.go", 18 "wizard_dashboard.go", 19 "wizard_ethstats.go", 20 "wizard_explorer.go", 21 "wizard_faucet.go", 22 "wizard_genesis.go", 23 "wizard_intro.go", 24 "wizard_netstats.go", 25 "wizard_network.go", 26 "wizard_nginx.go", 27 "wizard_node.go", 28 "wizard_wallet.go", 29 ], 30 importpath = "github.com/ethereum/go-ethereum/cmd/puppeth", 31 visibility = ["//visibility:private"], 32 deps = [ 33 "//accounts/keystore:go_default_library", 34 "//common:go_default_library", 35 "//common/hexutil:go_default_library", 36 "//common/math:go_default_library", 37 "//consensus/ethash:go_default_library", 38 "//core:go_default_library", 39 "//log:go_default_library", 40 "//params:go_default_library", 41 "//vendor/github.com/olekukonko/tablewriter:go_default_library", 42 "@in_gopkg_urfave_cli_v1//:go_default_library", 43 "@org_golang_x_crypto//ssh:go_default_library", 44 "@org_golang_x_crypto//ssh/terminal:go_default_library", 45 ], 46 ) 47 48 go_binary( 49 name = "puppeth", 50 embed = [":go_default_library"], 51 visibility = ["//visibility:public"], 52 ) 53 54 go_test( 55 name = "go_default_test", 56 srcs = ["genesis_test.go"], 57 data = glob(["testdata/**"]), 58 embed = [":go_default_library"], 59 deps = [ 60 "//core:go_default_library", 61 "@com_github_davecgh_go_spew//spew:go_default_library", 62 ], 63 )