Skip to content

Commit

Permalink
Move files from .../imagemanager/platform/ios to `.../imagemanager/…
Browse files Browse the repository at this point in the history
…platform/ios/react/renderer/imagemanager`

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

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

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

Reviewed By: cortinico

Differential Revision: D43088421

fbshipit-source-id: c3b86a95e67cc1ab9531997bb1bfbf011b7f730f
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Feb 15, 2023
1 parent 5588e0f commit 931a4c5
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ReactCommon/react/renderer/imagemanager/BUCK
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ load(
"subdir_glob",
)

oncall("react_native")

APPLE_COMPILER_FLAGS = get_apple_compiler_flags()

rn_xplat_cxx_library(
Expand Down Expand Up @@ -49,7 +51,7 @@ rn_xplat_cxx_library(
ios_exported_headers = subdir_glob(
[
("", "*.h"),
("platform/ios", "RCTImagePrimitivesConversions.h"),
("platform/ios/react/renderer/imagemanager", "RCTImagePrimitivesConversions.h"),
],
prefix = "react/renderer/imagemanager",
),
Expand All @@ -61,7 +63,7 @@ rn_xplat_cxx_library(
ios_headers = subdir_glob(
[
("", "*.h"),
("platform/ios", "**/*.h"),
("platform/ios/react/renderer/imagemanager", "**/*.h"),
],
prefix = "",
),
Expand Down

0 comments on commit 931a4c5

Please sign in to comment.