fix(compiler): prepare for future Bazel semantics of += (#19717)

This is a local mod that was already applied in G3.

PR Close #19717
This commit is contained in:
Vikram Subramanian 2017-10-13 16:26:21 -07:00 committed by Tobias Bosch
parent 43f9d917d9
commit 836c889baa
1 changed files with 2 additions and 2 deletions

View File

@ -115,7 +115,7 @@ def ngc_compile_action(ctx, label, inputs, outputs, messages_out, config_file_pa
else:
supports_workers = str(int(ctx.attr._supports_workers))
arguments = _EXTRA_NODE_OPTIONS_FLAGS
arguments = list(_EXTRA_NODE_OPTIONS_FLAGS)
# One at-sign makes this a params-file, enabling the worker strategy.
# Two at-signs escapes the argument so it's passed through to ngc
# rather than the contents getting expanded.
@ -247,4 +247,4 @@ ng_module = rule(
),
},
outputs = COMMON_OUTPUTS,
)
)