constellation/internal/grpc/dialer/BUILD.bazel
renovate[bot] 230ea79bcc
deps: update Google SDK (#1748)
* deps: update Google SDK

* deps: fix grpc_testing import

* deps: update pseudo version tool hashes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Leonard Cohnen <lc@edgeless.systems>
2023-05-16 18:13:17 +02:00

33 lines
984 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//bazel/go:go_test.bzl", "go_test")
go_library(
name = "dialer",
srcs = ["dialer.go"],
importpath = "github.com/edgelesssys/constellation/v2/internal/grpc/dialer",
visibility = ["//:__subpackages__"],
deps = [
"//internal/atls",
"//internal/grpc/atlscredentials",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//credentials/insecure",
],
)
go_test(
name = "dialer_test",
srcs = ["dialer_test.go"],
embed = [":dialer"],
deps = [
"//internal/atls",
"//internal/grpc/atlscredentials",
"//internal/grpc/testdialer",
"//internal/variant",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@org_golang_google_grpc//:go_default_library",
"@org_golang_google_grpc//interop/grpc_testing",
"@org_uber_go_goleak//:goleak",
],
)