Skip to content

Commit dd2b9f8

Browse files
authored
refactor: Split cpp code base (#6329)
## Summary This pull requests defines boundaries in C++ layer between Worklet Runtimes logic and Animations logic. I've only moved files here, more elaborate refactors will come up in the future. ## Test plan - [x] Android builds & runs. - [x] iOS builds & runs.
1 parent d65549b commit dd2b9f8

36 files changed

+4
-3
lines changed

packages/react-native-reanimated/android/CMakeLists.txt

+4-3
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,11 @@ target_include_directories(
6666
"${COMMON_SRC_DIR}/cpp/hidden_headers"
6767
"${COMMON_SRC_DIR}/cpp/LayoutAnimations"
6868
"${COMMON_SRC_DIR}/cpp/NativeModules"
69-
"${COMMON_SRC_DIR}/cpp/ReanimatedRuntime"
70-
"${COMMON_SRC_DIR}/cpp/Registries"
71-
"${COMMON_SRC_DIR}/cpp/SharedItems"
7269
"${COMMON_SRC_DIR}/cpp/Tools"
70+
"${COMMON_SRC_DIR}/cpp/Worklets/Registries"
71+
"${COMMON_SRC_DIR}/cpp/Worklets/SharedItems"
72+
"${COMMON_SRC_DIR}/cpp/Worklets/Tools"
73+
"${COMMON_SRC_DIR}/cpp/Worklets/WorkletRuntime"
7374
"${SRC_DIR}/main/cpp"
7475
)
7576

0 commit comments

Comments
 (0)