Skip to content

Commit

Permalink
Move files from .../textlayoutmanager/platform/ios to `.../textlayo…
Browse files Browse the repository at this point in the history
…utmanager/platform/ios/react/renderer/textlayoutmanager` (#36158)

Summary:
Pull Request resolved: #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
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Feb 15, 2023
1 parent 931a4c5 commit 0e09d6f
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ReactCommon/react/renderer/textlayoutmanager/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ load(
"subdir_glob",
)

oncall("react_native")

APPLE_COMPILER_FLAGS = get_apple_compiler_flags()

rn_xplat_cxx_library(
Expand Down Expand Up @@ -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",
),
Expand All @@ -94,7 +96,7 @@ rn_xplat_cxx_library(
],
ios_headers = subdir_glob(
[
("platform/ios", "**/*.h"),
("platform/ios/react/renderer/textlayoutmanager", "**/*.h"),
],
prefix = "",
),
Expand Down

0 comments on commit 0e09d6f

Please sign in to comment.