Skip to content

Commit 192ddcf

Browse files
committed
grpc-native: Reduce library dependencies (fixes KRPC-185)
Signed-off-by: Johannes Zottele <[email protected]>
1 parent d29165b commit 192ddcf

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

cinterop-c/BUILD.bazel

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,7 @@ cc_library(
1515
includes = ["include"],
1616
visibility = ["//visibility:public"],
1717
deps = [
18-
# TODO: Reduce the dependencies and only use required once. KRPC-185
19-
"@com_github_grpc_grpc//:grpc",
20-
"@com_github_grpc_grpc//:channelz",
21-
"@com_github_grpc_grpc//:generic_stub",
22-
"@com_github_grpc_grpc//:grpc++",
23-
"@com_github_grpc_grpc//:grpc_credentials_util",
24-
"@com_google_protobuf//:protobuf",
18+
"@com_github_grpc_grpc//:grpc"
2519
],
2620
)
2721

cinterop-c/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module(
2-
name = "grpcpp_c",
2+
name = "kgrpc",
33
version = "0.1",
44
)
55

@@ -16,7 +16,7 @@ bazel_dep(
1616
repo_name = "com_google_protobuf",
1717
)
1818

19-
# gRPC C++ library
19+
# gRPC library
2020
bazel_dep(
2121
name = "grpc",
2222
version = "1.73.1",

0 commit comments

Comments
 (0)