From 2cb3ac38da476d26722676f71d2f39d29ac836ad Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Fri, 16 Feb 2024 13:32:10 -0800 Subject: [PATCH] Fix bazel HEAD compatibility 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, )