Move files from `.../textlayoutmanager/platform/ios` to `.../textlayoutmanager/platform/ios/react/renderer/textlayoutmanager` (#36158)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/36158

To properly setup the Header Search Paths for `use_frameworks!`, we need to move the files that are in the `.../textlayoutmanager/platform/ios` folder into the `.../textlayoutmanager/platform/ios/react/renderer/textlayoutmanager` folder.

This mimic the same folder structure we have also `android`

## Changelog
[iOS][Changed] Moved the files from `.../textlayoutmanager/platform/ios` to `.../textlayoutmanager/platform/ios/react/renderer/textlayoutmanager`

Reviewed By: cortinico

Differential Revision: D43088586

fbshipit-source-id: 9589fe62f36fbff2744fdfbf3475e95954424232
This commit is contained in:
Riccardo Cipolleschi 2023-02-15 04:17:06 -08:00 коммит произвёл Facebook GitHub Bot
Родитель 931a4c5e23
Коммит 0e09d6f8a6
13 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -14,6 +14,8 @@ load(
"subdir_glob",
)
oncall("react_native")
APPLE_COMPILER_FLAGS = get_apple_compiler_flags()
rn_xplat_cxx_library(
@ -83,7 +85,7 @@ rn_xplat_cxx_library(
],
ios_exported_headers = subdir_glob(
[
("platform/ios", "*.h"),
("platform/ios/react/renderer/textlayoutmanager", "*.h"),
],
prefix = "react/renderer/textlayoutmanager",
),
@ -94,7 +96,7 @@ rn_xplat_cxx_library(
],
ios_headers = subdir_glob(
[
("platform/ios", "**/*.h"),
("platform/ios/react/renderer/textlayoutmanager", "**/*.h"),
],
prefix = "",
),