Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Pod::Spec.new do |s|
s.dependency "React-Fabric/animated"
s.dependency "Yoga"

add_dependency(s, "React-Fabric")
add_dependency(s, "ReactCommon", :subspec => "turbomodule/core", :additional_framework_paths => ["react/nativemodule/core"])

depend_on_js_engine(s)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Pod::Spec.new do |s|
s.dependency "React-webperformancenativemodule"
s.dependency "React-Fabric/animated"
s.dependency "React-cxxstableapi"
add_dependency(s, "React-Fabric")
add_dependency(s, "React-RCTFBReactNativeSpec")
add_dependency(s, "React-featureflags")
add_dependency(s, "React-featureflagsnativemodule")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Pod::Spec.new do |s|
s.dependency "Yoga"
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-bridging"
s.dependency "React-Fabric"
add_dependency(s, "React-Fabric")
s.dependency "React-Fabric/bridging"
s.dependency "React-FabricComponents"
s.dependency "React-cxxstableapi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Pod::Spec.new do |s|
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-bridging"

s.dependency "React-Fabric"
add_dependency(s, "React-Fabric")
s.dependency "React-Fabric/bridging"
s.dependency "React-runtimescheduler"
s.dependency "React-cxxstableapi"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Pod::Spec.new do |s|
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-bridging"

s.dependency "React-Fabric"
add_dependency(s, "React-Fabric")
s.dependency "React-Fabric/bridging"
s.dependency "React-Fabric/observers/mutation"
s.dependency "React-featureflags"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Pod::Spec.new do |s|
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-bridging"

s.dependency "React-Fabric"
add_dependency(s, "React-Fabric")
s.dependency "React-Fabric/bridging"
s.dependency "React-Fabric/observers/resize"
s.dependency "React-runtimescheduler"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Pod::Spec.new do |s|

s.dependency "Yoga"
s.dependency "ReactCommon/turbomodule/core"
s.dependency "React-Fabric"
add_dependency(s, "React-Fabric")
s.dependency "React-Fabric/bridging"
add_dependency(s, "React-runtimeexecutor", :additional_framework_paths => ["platform/ios"])
add_dependency(s, "React-RCTFBReactNativeSpec")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ add_library(react_renderer_bridging INTERFACE)

target_include_directories(react_renderer_bridging INTERFACE ${REACT_COMMON_DIR})

target_link_libraries(react_renderer_bridging INTERFACE react_cxxstableapi)
target_link_libraries(react_renderer_bridging INTERFACE
react_bridging
react_cxxstableapi
react_renderer_core)
target_compile_reactnative_options(react_renderer_bridging INTERFACE)
target_compile_options(react_renderer_bridging INTERFACE -Wpedantic)
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#include <react/cxxstableapi/FrameworksGuard.h>

#include <React/Bridging.h>
#include <React/RendererCore.h>
#include <jsi/jsi.h>
#include <react/bridging/Base.h>
#include <react/renderer/core/ShadowNode.h>

namespace facebook::react {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ of module `React`, closing a cycle:
React -> ReactNativeHeaders_react -> React
```

Found empirically: `react/timing/primitives.h` -> `<React/Debug.h>`. This is
the same two-module-ownership failure as `UMBRELLA_CXX_GUARDED_EXCLUSIONS`
Found empirically: `react/timing/primitives.h` -> `<React/Debug.h>`. This is the
same two-module-ownership failure as `UMBRELLA_CXX_GUARDED_EXCLUSIONS`
(`RCTFrameTimingsObserver.h`, which reaches the same `primitives.h`), in the
opposite direction. They are `objc-blocked` by construction (they re-export
their module's C++ surface), so they were never R4 umbrella or R5 module
Expand Down
Loading