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
This commit is contained in:
Nick Lefever
2025-05-22 12:27:51 -07:00
committed by Facebook GitHub Bot
parent 206cdc1f05
commit 86ffa88bbd
@@ -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)