From 80bcdc99427d5c5fd55af57a0028e2b2f5890a00 Mon Sep 17 00:00:00 2001 From: Ruslan Shestopalyuk Date: Fri, 15 Mar 2024 03:44:10 -0700 Subject: [PATCH] Fix broken RNTester build in OSS (Android) (#43495) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43495 ## Changelog: [Internal] - Fixes build regression of RNTester on OSS, coming from D54764898. NOTE: This is only Android bit for now, looking into the iOS one. Reviewed By: cortinico Differential Revision: D54908736 fbshipit-source-id: 70081d1378a56dd0df3f76322377f5a0e6615f80 --- .../react/renderer/components/textinput/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/renderer/components/textinput/CMakeLists.txt b/packages/react-native/ReactCommon/react/renderer/components/textinput/CMakeLists.txt index d245134fcc6..98814617b5c 100644 --- a/packages/react-native/ReactCommon/react/renderer/components/textinput/CMakeLists.txt +++ b/packages/react-native/ReactCommon/react/renderer/components/textinput/CMakeLists.txt @@ -14,7 +14,7 @@ add_compile_options( -Wpedantic -DLOG_TAG=\"Fabric\") -file(GLOB rrc_textinput_SRC CONFIGURE_DEPENDS platform/android/react/renderer/components/androidtextinput/*.cpp) +file(GLOB rrc_textinput_SRC CONFIGURE_DEPENDS *.cpp platform/android/react/renderer/components/androidtextinput/*.cpp) add_library(rrc_textinput STATIC ${rrc_textinput_SRC}) target_include_directories(rrc_textinput PUBLIC . ${CMAKE_CURRENT_SOURCE_DIR}/platform/android/)