Skip to content

Commit

Permalink
Move graphics' platform/ios files to graphics/platform/ios/react/rend…
Browse files Browse the repository at this point in the history
…erer/graphics folder structure

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

This mimic the same folder structure we have also in `cxx` and `android`

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

Reviewed By: sshic

Differential Revision: D43082032

fbshipit-source-id: 519d2e12eb7edd50b5f71bac5b1c618c6bf89919
  • Loading branch information
cipolleschi authored and facebook-github-bot committed Feb 15, 2023
1 parent 89ef5bd commit b5e4fea
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ReactCommon/react/renderer/graphics/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 @@ -67,7 +69,7 @@ rn_xplat_cxx_library(
fbobjc_compiler_flags = APPLE_COMPILER_FLAGS,
fbobjc_exported_headers = subdir_glob(
[
("platform/ios", "*.h"),
("platform/ios/react/renderer/graphics", "*.h"),
],
prefix = "react/renderer/graphics",
),
Expand Down

0 comments on commit b5e4fea

Please sign in to comment.