We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253c24f commit de52e38Copy full SHA for de52e38
kt_jvm_grpc.bzl
@@ -327,7 +327,8 @@ def kt_jvm_proto_library(
327
visibility = None,
328
flavor = None,
329
deprecation = None,
330
- features = []):
+ features = [],
331
+ runtime_deps = []):
332
"""
333
This rule accepts any number of proto_library targets in "deps", translates them to Kotlin and
334
returns the compiled Kotlin.
@@ -355,6 +356,7 @@ def kt_jvm_proto_library(
355
356
(for Android usage)
357
deprecation: Standard attribute
358
features: Standard attribute
359
+ runtime_deps: Standard attribute
360
361
if (java_deps != None and len(java_deps) > 0):
362
java_protos = java_deps
@@ -416,4 +418,5 @@ def kt_jvm_proto_library(
416
418
tags = tags,
417
419
deprecation = deprecation,
420
features = features,
421
+ runtime_deps = runtime_deps,
422
)
0 commit comments