From 1b58bc4648fc448357ddcb3804425f40060f606f Mon Sep 17 00:00:00 2001 From: Suet-Fei Li Date: Tue, 25 Feb 2025 16:23:07 -0800 Subject: [PATCH] Add back NearbyConnections apple_static_xcframework needed by Kokoro. PiperOrigin-RevId: 731070050 --- connections/c/BUILD | 44 +++++--------------------------------------- 1 file changed, 5 insertions(+), 39 deletions(-) diff --git a/connections/c/BUILD b/connections/c/BUILD index 6e92e8ab..837a0a28 100644 --- a/connections/c/BUILD +++ b/connections/c/BUILD @@ -54,50 +54,16 @@ cc_library( ) # iOS only. -apple_static_xcframework( - name = "NearbyConnections_x86sim", - avoid_deps = [], - bundle_name = "NearbyConnections", - ios = { - "simulator": [ - "x86_64", - ], - }, - minimum_os_versions = { - "ios": "15.0", - }, - deps = [ - ":nc", - "//internal/platform/implementation/apple", - "//internal/platform/implementation/apple/Mediums", - ], -) - -apple_static_xcframework( - name = "NearbyConnections_arm64sim", - avoid_deps = [], - bundle_name = "NearbyConnections", - ios = { - "simulator": [ - "arm64", - ], - }, - minimum_os_versions = { - "ios": "15.0", - }, - deps = [ - ":nc", - "//internal/platform/implementation/apple", - "//internal/platform/implementation/apple/Mediums", - ], -) - -# Do not rename this target, as it will break CI. +# Warning: Do not rename this target, as it will break Kokoro workflows. apple_static_xcframework( name = "NearbyConnections", avoid_deps = [], bundle_name = "NearbyConnections", ios = { + "simulator": [ + "arm64", + "x86_64", + ], "device": [ "arm64", ],