From 1cf35f02db465731e11c015f84d30ace164d1ac0 Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 5 Jun 2024 13:03:13 -0700 Subject: [PATCH] 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 --- cc/toolchains/variables/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cc/toolchains/variables/BUILD b/cc/toolchains/variables/BUILD index ec072879..d0c89772 100644 --- a/cc/toolchains/variables/BUILD +++ b/cc/toolchains/variables/BUILD @@ -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, )