Skip to content

Commit

Permalink
Add missing wiring for additional_rule_attrs in j2cl_maven_import_ext…
Browse files Browse the repository at this point in the history
…ernal.

PiperOrigin-RevId: 696574122
  • Loading branch information
gkdn authored and copybara-github committed Nov 14, 2024
1 parent 6639a3e commit 55fe9cc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build_defs/internal_do_not_use/j2cl_repo.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ def _j2cl_import_external(repository_ctx):
prop = prop[:-1]
lines.append(" %s = %s," % (prop, repr(value)))

additional_attrs = repository_ctx.attr.additional_rule_attrs
for attr_key in additional_attrs:
lines.append(" %s = %s," % (attr_key, additional_attrs[attr_key]))

lines.append(")")
lines.append("")

Expand Down

0 comments on commit 55fe9cc

Please sign in to comment.