File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -327,7 +327,8 @@ def kt_jvm_proto_library(
327
327
visibility = None ,
328
328
flavor = None ,
329
329
deprecation = None ,
330
- features = []):
330
+ features = [],
331
+ runtime_deps = []):
331
332
"""
332
333
This rule accepts any number of proto_library targets in "deps", translates them to Kotlin and
333
334
returns the compiled Kotlin.
@@ -355,6 +356,7 @@ def kt_jvm_proto_library(
355
356
(for Android usage)
356
357
deprecation: Standard attribute
357
358
features: Standard attribute
359
+ runtime_deps: Standard attribute
358
360
"""
359
361
if (java_deps != None and len (java_deps ) > 0 ):
360
362
java_protos = java_deps
@@ -416,4 +418,5 @@ def kt_jvm_proto_library(
416
418
tags = tags ,
417
419
deprecation = deprecation ,
418
420
features = features ,
421
+ runtime_deps = runtime_deps ,
419
422
)
You can’t perform that action at this time.
0 commit comments