From 364e71b15937bf579e172e8d17492b6d0081d2e4 Mon Sep 17 00:00:00 2001 From: Alex Hunt Date: Wed, 30 Jul 2025 10:30:08 -0700 Subject: [PATCH] Fix CMake dependency error (#52923) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52923 Follow-up to D78904748, where CI was broken on `main` for the `run_fantom_tests` job. It turns out this Android build uniquely included the new `react_performance_cdpmetrics` dependency, and this had an incorrect dep. Changelog: [Internal] Reviewed By: hoxyq Differential Revision: D79263124 fbshipit-source-id: 3e38e0cebe53520ea50e6d11a571e01c52e34874 --- .../ReactCommon/react/performance/cdpmetrics/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/react/performance/cdpmetrics/CMakeLists.txt b/packages/react-native/ReactCommon/react/performance/cdpmetrics/CMakeLists.txt index 4ce8ffa7dab..e59c289747b 100644 --- a/packages/react-native/ReactCommon/react/performance/cdpmetrics/CMakeLists.txt +++ b/packages/react-native/ReactCommon/react/performance/cdpmetrics/CMakeLists.txt @@ -18,6 +18,6 @@ target_include_directories(react_performance_cdpmetrics PUBLIC ${REACT_COMMON_DI target_link_libraries(react_performance_cdpmetrics folly_runtime jsi - react_performancetimeline + react_performance_timeline react_timing runtimeexecutor)