Skip to content

Commit 89de696

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Build JSI, React-Debug, React-logger, React-MapBuffer with SPM (#50075)
Summary: This is an exploratory change to see how it will look like to build core from SPM. In this change we are building three pieces of React native (using the Podspec names for simplicity): - React-jsi - React-debug - React-logger - React-MapBuffer They depends on a local ReactNativeDependency.xcframework we can build using the prebuild-io script. ## CHANGELOG: [INTERNAL] - set up initial Swift PM configuration Reviewed By: cortinico Differential Revision: D70567840
1 parent 6cbd6ff commit 89de696

File tree

1 file changed

+111
-0
lines changed

1 file changed

+111
-0
lines changed

packages/react-native/Package.swift

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
// swift-tools-version: 6.0
2+
/*
3+
* Copyright (c) Meta Platforms, Inc. and affiliates.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
import PackageDescription
10+
11+
let react = "React"
12+
13+
let cxxRNDepHeaderSearchPath: (Int) -> CXXSetting = {
14+
let prefix = (0..<$0).map { _ in "../" } .joined(separator: "")
15+
return .headerSearchPath("\(prefix)third-party/ReactNativeDependencies.xcframework/Headers")
16+
}
17+
let cRNDepHeaderSearchPath: (Int) -> CSetting = {
18+
let prefix = (0..<$0).map { _ in "../" } .joined(separator: "")
19+
return .headerSearchPath("\(prefix)third-party/ReactNativeDependencies.xcframework/Headers")
20+
}
21+
22+
let package = Package(
23+
name: react,
24+
products: [
25+
.library(
26+
name: react,
27+
type: .dynamic,
28+
targets: [.reactDebug, .jsi, .logger, .mapbuffer]
29+
),
30+
],
31+
targets: [
32+
.reactNativeTarget(
33+
name: .reactDebug,
34+
dependencies: [.reactNativeDependencies],
35+
path: "ReactCommon/react/debug",
36+
publicHeadersPath: "."
37+
),
38+
.reactNativeTarget(
39+
name: .jsi,
40+
dependencies: [.reactNativeDependencies],
41+
path: "ReactCommon/jsi",
42+
extraExcludes: ["jsi/CMakeLists.txt", "jsi/test/testlib.h", "jsi/test/testlib.cpp"],
43+
sources: ["jsi"],
44+
publicHeadersPath: "jsi/",
45+
extraCSettings: [.headerSearchPath(".")],
46+
extraCxxSettings: [.headerSearchPath(".")]
47+
),
48+
.reactNativeTarget(
49+
name: .logger,
50+
dependencies: [.reactNativeDependencies, .jsi],
51+
path: "ReactCommon/logger",
52+
publicHeadersPath: "."
53+
),
54+
.reactNativeTarget(
55+
name: .mapbuffer,
56+
dependencies: [.reactNativeDependencies, .reactDebug],
57+
path: "ReactCommon/react/renderer/mapbuffer",
58+
extraExcludes: ["tests/MapBufferTest.cpp"],
59+
publicHeadersPath: ".",
60+
extraCSettings: [.headerSearchPath("../../..")],
61+
extraCxxSettings: [.headerSearchPath("../../..")]
62+
),
63+
.binaryTarget(
64+
name: .reactNativeDependencies,
65+
path: "third-party/ReactNativeDependencies.xcframework"
66+
),
67+
]
68+
)
69+
70+
extension String {
71+
static let reactDebug = "React-debug"
72+
static let jsi = "React-jsi"
73+
static let logger = "React-logger"
74+
static let mapbuffer = "React-Mapbuffer"
75+
76+
static let reactNativeDependencies = "ReactNativeDependencies"
77+
}
78+
79+
func defaultExcludeFor(module: String) -> [String] {
80+
return ["BUCK", "CMakeLists.txt", "\(module).podspec"]
81+
}
82+
83+
extension Target {
84+
static func reactNativeTarget(
85+
name: String,
86+
dependencies: [String],
87+
path: String,
88+
extraExcludes: [String] = [],
89+
sources: [String]? = nil,
90+
publicHeadersPath: String? = nil,
91+
extraCSettings: [CSetting] = [],
92+
extraCxxSettings: [CXXSetting] = []
93+
) -> Target {
94+
let dependencies = dependencies.map { Dependency.byNameItem(name: $0, condition: nil) }
95+
let excludes = defaultExcludeFor(module: .logger) + extraExcludes
96+
let numOfSlash = path.count { $0 == "/" }
97+
let cSettings = [cRNDepHeaderSearchPath(numOfSlash + 1)] + extraCSettings
98+
let cxxSettings = [cxxRNDepHeaderSearchPath(numOfSlash + 1), .unsafeFlags(["-std=c++20"])] + extraCxxSettings
99+
100+
return .target(
101+
name: name,
102+
dependencies: dependencies,
103+
path: path,
104+
exclude: excludes,
105+
sources: sources,
106+
publicHeadersPath: publicHeadersPath,
107+
cSettings: cSettings,
108+
cxxSettings: cxxSettings
109+
)
110+
}
111+
}

0 commit comments

Comments
 (0)