From f4a17fbb93d6cdba29a340f0dde4d155af972439 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Thu, 12 Dec 2024 06:57:43 -0800 Subject: [PATCH] Add missing glog dep to React-idlecallbacksnativemodule.podspec (#48241) Summary: `react_native_assert` on iOS uses glog under the hood, and https://github.com/facebook/react-native/pull/47911 added usage to a new podspec, which means new entire binary under some build modes. Need to add missing dependency I think? Changelog: [Internal] Pull Request resolved: https://github.com/facebook/react-native/pull/48241 Test Plan: tes_ios_helloworld passes with DynamicLibraries Reviewed By: cipolleschi Differential Revision: D67141052 Pulled By: NickGerleman fbshipit-source-id: 299a499f40e9b54c4aca5d6e1c95c43ce933fb2b --- .../idlecallbacks/React-idlecallbacksnativemodule.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-native/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec b/packages/react-native/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec index c526a7f290b..9b5af69f1be 100644 --- a/packages/react-native/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec +++ b/packages/react-native/ReactCommon/react/nativemodule/idlecallbacks/React-idlecallbacksnativemodule.podspec @@ -61,4 +61,5 @@ Pod::Spec.new do |s| s.dependency "ReactCommon/turbomodule/core" s.dependency "React-runtimescheduler" add_dependency(s, "React-RCTFBReactNativeSpec") + s.dependency "glog" end