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", ],