Make output_file accessible from strip.

BEGIN_PUBLIC
Make output_file accessible from strip.

See https://github.com/bazelbuild/bazel/pull/22638
END_PUBLIC

PiperOrigin-RevId: 640622335
Change-Id: I96fdca9494e5043f546b588490d692d67f94ee2b
This commit is contained in:
Googler 2024-06-05 13:03:13 -07:00 committed by Copybara-Service
parent 531c9951a8
commit 1cf35f02db
1 changed files with 4 additions and 1 deletions

View File

@ -261,7 +261,10 @@ cc_variable(
cc_variable(
name = "output_file",
actions = ["//cc/toolchains/actions:compile_actions"],
actions = [
"//cc/toolchains/actions:compile_actions",
"//cc/toolchains/actions:strip",
],
type = types.file,
)