mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* Check in go-ethereum crypto/sepc256k1 package with proper build rules
* gaz
* Add karalabe/usb
* viz improvement
* Remove bazel-go-ethereum, use vendored libraries only
* move vendor stuff to third_party so that go mod wont be mad anymore
* fix geth e2e flags
* fix geth e2e flags
* remove old rules_foreign_cc toolchain
* Update cross compile docker image to support os x
* works for geth build
* remove copy of sepc256k1
* revert changes in tools/cross-toolchain
* gaz
* Update go-ethereum to 1.10.10
* Revert "revert changes in tools/cross-toolchain"
This reverts commit 2e8128f7c3.
* revert tags changes
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
22 lines
491 B
Python
22 lines
491 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
# gazelle:prefix github.com/karalabe/usb
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"hid_disabled.go",
|
|
"raw_disabled.go",
|
|
"usb.go",
|
|
"usb_disabled.go",
|
|
],
|
|
importpath = "github.com/karalabe/usb",
|
|
visibility = ["@com_github_ethereum_go_ethereum//:__subpackages__"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["usb_test.go"],
|
|
embed = [":go_default_library"],
|
|
)
|