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