Move graphics' platform/ios files to graphics/platform/ios/react/renderer/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
This commit is contained in:
Riccardo Cipolleschi
2023-02-15 04:17:06 -08:00
committed by Facebook GitHub Bot
parent 89ef5bd6f9
commit b5e4fea86e
5 changed files with 3 additions and 1 deletions
+3 -1
View File
@@ -14,6 +14,8 @@ load(
"subdir_glob",
)
oncall("react_native")
APPLE_COMPILER_FLAGS = get_apple_compiler_flags()
rn_xplat_cxx_library(
@@ -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",
),