Skip to content

Commit 1f1ddd0

Browse files
Onur Erselfacebook-github-bot
Onur Ersel
authored andcommitted
Added necessary headers and sources to fix compilation errors for tvOS target (#20406)
Summary: With version 0.56.0, XCode doesn't compile and run the scheme for tvOS. This commit adds missing headers and sources to build phases in React project. Fixes #20087 Pull Request resolved: #20406 Differential Revision: D9071205 Pulled By: hramos fbshipit-source-id: d66f1294d12cfda9c41b8867a578922f3c2a51f7
1 parent 0541c7b commit 1f1ddd0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

React/React.xcodeproj/project.pbxproj

+8
Original file line numberDiff line numberDiff line change
@@ -1199,6 +1199,10 @@
11991199
AC70D2E91DE489E4002E6351 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = AC70D2E81DE489E4002E6351 /* RCTJavaScriptLoader.mm */; };
12001200
B233E6EA1D2D845D00BC68BA /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B233E6E91D2D845D00BC68BA /* RCTI18nManager.m */; };
12011201
B95154321D1B34B200FE7B80 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = B95154311D1B34B200FE7B80 /* RCTActivityIndicatorView.m */; };
1202+
BA0501AD2109DCF200A6BBC4 /* ReactMarker.h in Copy Headers */ = {isa = PBXBuildFile; fileRef = 13DA8A2F2097A90A00276ED4 /* ReactMarker.h */; };
1203+
BA0501AE2109DD0600A6BBC4 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E223624320875A8000108244 /* JSExecutor.cpp */; };
1204+
BA0501B02109DD1800A6BBC4 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CE2080020772F7C009A43B3 /* YGConfig.cpp */; };
1205+
BA0501B12109DD1C00A6BBC4 /* YGConfig.h in Copy Headers */ = {isa = PBXBuildFile; fileRef = 5CE2080120772F7C009A43B3 /* YGConfig.h */; };
12021206
C60128AB1F3D1258009DF9FF /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C60128A91F3D1258009DF9FF /* RCTCxxConvert.h */; };
12031207
C60128AC1F3D1258009DF9FF /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = C60128A91F3D1258009DF9FF /* RCTCxxConvert.h */; };
12041208
C60128AD1F3D1258009DF9FF /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = C60128AA1F3D1258009DF9FF /* RCTCxxConvert.m */; };
@@ -1517,6 +1521,7 @@
15171521
dstPath = include/yoga;
15181522
dstSubfolderSpec = 16;
15191523
files = (
1524+
BA0501B12109DD1C00A6BBC4 /* YGConfig.h in Copy Headers */,
15201525
3DFE0D1A1DF8575800459392 /* YGEnums.h in Copy Headers */,
15211526
3DFE0D1B1DF8575800459392 /* YGMacros.h in Copy Headers */,
15221527
3DFE0D1C1DF8575800459392 /* Yoga.h in Copy Headers */,
@@ -1530,6 +1535,7 @@
15301535
dstPath = include/cxxreact;
15311536
dstSubfolderSpec = 16;
15321537
files = (
1538+
BA0501AD2109DCF200A6BBC4 /* ReactMarker.h in Copy Headers */,
15331539
598FD1921F816A2A006C54CB /* RAMBundleRegistry.h in Copy Headers */,
15341540
3DA9823B1E5B1053004F2374 /* CxxModule.h in Copy Headers */,
15351541
3DA9823C1E5B1053004F2374 /* CxxNativeModule.h in Copy Headers */,
@@ -4361,6 +4367,7 @@
43614367
isa = PBXSourcesBuildPhase;
43624368
buildActionMask = 2147483647;
43634369
files = (
4370+
BA0501B02109DD1800A6BBC4 /* YGConfig.cpp in Sources */,
43644371
53DEF6EB205AE5A1006A3890 /* YGFloatOptional.cpp in Sources */,
43654372
53D123A11FBF1EFF001B8A10 /* Yoga.cpp in Sources */,
43664373
5352C5762038FF9700A3B97E /* YGStyle.cpp in Sources */,
@@ -4426,6 +4433,7 @@
44264433
isa = PBXSourcesBuildPhase;
44274434
buildActionMask = 2147483647;
44284435
files = (
4436+
BA0501AE2109DD0600A6BBC4 /* JSExecutor.cpp in Sources */,
44294437
3DC159E61E83E1FA007B1282 /* JSBigString.cpp in Sources */,
44304438
13F8878E1E29726300C3C7A1 /* JSIndexedRAMBundle.cpp in Sources */,
44314439
13F887901E29726300C3C7A1 /* ModuleRegistry.cpp in Sources */,

0 commit comments

Comments
 (0)