From 6a9525c9b0fc0aa5d729a3ea3258586df7aece92 Mon Sep 17 00:00:00 2001 From: Peter Argany Date: Mon, 11 Jan 2021 12:58:08 -0800 Subject: [PATCH] Delete iOS9 BUCK workarounds Summary: Changelog: [Internal] According to D19411886 (https://github.com/facebook/react-native/commit/30491a208513451efa6c2a62a116c61b21363a22), there were some deps that required a couple targets to stay at iOS9: - `//fbobjc/Libraries/FBGraphQLQuery:FBGraphQLQuery --> //xplat/js/react-native-github:RCTCxxUtilsApple` - `//fbobjc/Libraries/NativeTemplateKit:NativeTemplateKitJSExecutorPlugin --> //xplat/js/react-native-github/ReactCommon/jsi:JSCRuntimeApple` These targets seem to build after this diff, so I guess they've been pushed past iOS9. Reviewed By: fkgozali Differential Revision: D25692640 fbshipit-source-id: 1ce94a452090032ef316a3daa79885a7c58d6eac --- ReactCommon/jsi/BUCK | 2 -- 1 file changed, 2 deletions(-) diff --git a/ReactCommon/jsi/BUCK b/ReactCommon/jsi/BUCK index ecaba03aa5..0b73224850 100644 --- a/ReactCommon/jsi/BUCK +++ b/ReactCommon/jsi/BUCK @@ -79,8 +79,6 @@ rn_xplat_cxx_library( fbobjc_frameworks = [ "$SDKROOT/System/Library/Frameworks/JavaScriptCore.framework", ], - # TODO (T55502220): Remove when iOS 9.0 deprecation is complete everywhere. - fbobjc_target_sdk_version = "9.0", labels = ["supermodule:xplat/default/public.react_native.infra"], platforms = APPLE, visibility = ["PUBLIC"],