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:
parent
43f9d917d9
commit
836c889baa
|
@ -115,7 +115,7 @@ def ngc_compile_action(ctx, label, inputs, outputs, messages_out, config_file_pa
|
||||||
else:
|
else:
|
||||||
supports_workers = str(int(ctx.attr._supports_workers))
|
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.
|
# 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
|
# Two at-signs escapes the argument so it's passed through to ngc
|
||||||
# rather than the contents getting expanded.
|
# rather than the contents getting expanded.
|
||||||
|
@ -247,4 +247,4 @@ ng_module = rule(
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
outputs = COMMON_OUTPUTS,
|
outputs = COMMON_OUTPUTS,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue