mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
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"],
|
||
|
)
|