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 df55a32Copy full SHA for df55a32
kt_jvm_grpc.bzl
@@ -327,7 +327,9 @@ def kt_jvm_proto_library(
327
visibility = None,
328
flavor = None,
329
deprecation = None,
330
- features = []):
+ features = [],
331
+ runtime_deps = [],
332
+ ):
333
"""
334
This rule accepts any number of proto_library targets in "deps", translates them to Kotlin and
335
returns the compiled Kotlin.
@@ -355,6 +357,7 @@ def kt_jvm_proto_library(
355
357
(for Android usage)
356
358
deprecation: Standard attribute
359
features: Standard attribute
360
+ runtime_deps: Standard attribute
361
362
if (java_deps != None and len(java_deps) > 0):
363
java_protos = java_deps
@@ -416,4 +419,5 @@ def kt_jvm_proto_library(
416
419
tags = tags,
417
420
deprecation = deprecation,
418
421
features = features,
422
+ runtime_deps = runtime_deps,
423
)
0 commit comments