From a3ae3fa578a5f582cae7e918973dfd013b77cf1f Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Fri, 16 Feb 2024 13:36:27 -0800 Subject: [PATCH] Fix bazel HEAD compatibility (#303) After moving linking behavior to starlark this is required even though we don't care about it. It's just for tests in this case. --- test/starlark_apple_binary.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/starlark_apple_binary.bzl b/test/starlark_apple_binary.bzl index f9437c5..2013d6a 100644 --- a/test/starlark_apple_binary.bzl +++ b/test/starlark_apple_binary.bzl @@ -79,6 +79,6 @@ starlark_apple_binary = rule( default = "@bazel_tools//tools/allowlists/function_transition_allowlist", ), }, - fragments = ["apple", "objc", "cpp"], + fragments = ["apple", "objc", "cpp", "j2objc"], implementation = _starlark_apple_binary_impl, )