From 86ffa88bbd0a2a4d17773bc123257127c066535e Mon Sep 17 00:00:00 2001 From: Nick Lefever Date: Thu, 22 May 2025 12:27:51 -0700 Subject: [PATCH] Add missing dependency to CMakeLists for mounting (#51540) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51540 The view culling `CullingContext` depends on the ScrollView component. This adds the dependency to the mounting target in CMakeLists Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D75233669 fbshipit-source-id: 8342ed791082174ac6d5c6f21270b0cd0adcc95f --- .../ReactCommon/react/renderer/mounting/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/react-native/ReactCommon/react/renderer/mounting/CMakeLists.txt b/packages/react-native/ReactCommon/react/renderer/mounting/CMakeLists.txt index 3a733389beb..8b40e7c5a0c 100644 --- a/packages/react-native/ReactCommon/react/renderer/mounting/CMakeLists.txt +++ b/packages/react-native/ReactCommon/react/renderer/mounting/CMakeLists.txt @@ -30,6 +30,7 @@ target_link_libraries(react_renderer_mounting react_utils rrc_root rrc_view + rrc_scrollview yoga) target_compile_reactnative_options(react_renderer_mounting PRIVATE "Fabric") target_compile_options(react_renderer_mounting PRIVATE -Wpedantic)