@@ -100,13 +100,11 @@ const makeUWPProjectPlatform = async (name, arch) => {
100
100
101
101
const makeUWPProjectx86 = async ( ) => makeUWPProjectPlatform ( 'x86' , 'Win32' ) ;
102
102
const makeUWPProjectx64 = async ( ) => makeUWPProjectPlatform ( 'x64' , 'x64' ) ;
103
- const makeUWPProjectARM = async ( ) => makeUWPProjectPlatform ( 'arm' , 'arm' ) ;
104
103
const makeUWPProjectARM64 = async ( ) => makeUWPProjectPlatform ( 'arm64' , 'arm64' ) ;
105
104
106
105
const makeUWPProject = gulp . parallel (
107
106
makeUWPProjectx86 ,
108
107
makeUWPProjectx64 ,
109
- makeUWPProjectARM ,
110
108
makeUWPProjectARM64
111
109
) ;
112
110
@@ -126,14 +124,6 @@ const buildUWPx64Release = async () => {
126
124
exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\Build.bat -Platform x64 -Configuration Release' ) ;
127
125
}
128
126
129
- const buildUWPARMDebug = async ( ) => {
130
- exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\Build.bat -Platform ARM -Configuration Debug' ) ;
131
- }
132
-
133
- const buildUWPARMRelease = async ( ) => {
134
- exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\Build.bat -Platform ARM -Configuration Release' ) ;
135
- }
136
-
137
127
const buildUWPARM64Debug = async ( ) => {
138
128
exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\Build.bat -Platform ARM64 -Configuration Debug' ) ;
139
129
}
@@ -147,8 +137,6 @@ const buildUWPProject = gulp.parallel(
147
137
buildUWPx86Release ,
148
138
buildUWPx64Debug ,
149
139
buildUWPx64Release ,
150
- buildUWPARMDebug ,
151
- buildUWPARMRelease ,
152
140
buildUWPARM64Debug ,
153
141
buildUWPARM64Release
154
142
) ;
@@ -173,14 +161,6 @@ const buildUWPPlaygroundx64Release = async () => {
173
161
exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\BuildPlayground.bat -Platform x64 -Configuration Release' ) ;
174
162
}
175
163
176
- const buildUWPPlaygroundARMDebug = async ( ) => {
177
- exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\BuildPlayground.bat -Platform ARM -Configuration Debug' ) ;
178
- }
179
-
180
- const buildUWPPlaygroundARMRelease = async ( ) => {
181
- exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\BuildPlayground.bat -Platform ARM -Configuration Release' ) ;
182
- }
183
-
184
164
const buildUWPPlaygroundARM64Debug = async ( ) => {
185
165
exec ( '.\\..\\Modules\\@babylonjs\\react-native-windows\\windows\\scripts\\BuildPlayground.bat -Platform ARM64 -Configuration Debug' ) ;
186
166
}
@@ -194,8 +174,6 @@ const buildUWPPlayground = gulp.parallel(
194
174
buildUWPPlaygroundx86Release ,
195
175
buildUWPPlaygroundx64Debug ,
196
176
buildUWPPlaygroundx64Release ,
197
- buildUWPPlaygroundARMDebug ,
198
- buildUWPPlaygroundARMRelease ,
199
177
buildUWPPlaygroundARM64Debug ,
200
178
buildUWPPlaygroundARM64Release
201
179
) ;
@@ -285,9 +263,6 @@ const createUWPDirectories = async () => {
285
263
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } ` ) ;
286
264
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows` ) ;
287
265
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs` ) ;
288
- shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm` ) ;
289
- shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm/Debug` ) ;
290
- shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm/Release` ) ;
291
266
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm64` ) ;
292
267
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm64/Debug` ) ;
293
268
shelljs . mkdir ( '-p' , `${ assembledWindowsDir } /windows/libs/arm64/Release` ) ;
@@ -335,18 +310,6 @@ const copyx64ReleaseUWPFiles = () => {
335
310
. pipe ( gulp . dest ( `${ assembledWindowsDir } /windows/libs/x64/Release` ) ) ;
336
311
}
337
312
338
- const copyARMDebugUWPFiles = ( ) => {
339
- return gulp . src ( '../Modules/@babylonjs/react-native/Build/uwp_arm/**/Debug/**/*.{lib,pri}' )
340
- . pipe ( rename ( { dirname : '' } ) )
341
- . pipe ( gulp . dest ( `${ assembledWindowsDir } /windows/libs/arm/Debug` ) ) ;
342
- }
343
-
344
- const copyARMReleaseUWPFiles = ( ) => {
345
- return gulp . src ( '../Modules/@babylonjs/react-native/Build/uwp_arm/**/Release/**/*.{lib,pri}' )
346
- . pipe ( rename ( { dirname : '' } ) )
347
- . pipe ( gulp . dest ( `${ assembledWindowsDir } /windows/libs/arm/Release` ) ) ;
348
- }
349
-
350
313
const copyARM64DebugUWPFiles = ( ) => {
351
314
return gulp . src ( '../Modules/@babylonjs/react-native/Build/uwp_arm64/**/Debug/**/*.{lib,pri}' )
352
315
. pipe ( rename ( { dirname : '' } ) )
@@ -396,8 +359,6 @@ const copyUWPFiles = gulp.series(
396
359
copyx86ReleaseUWPFiles ,
397
360
copyx64DebugUWPFiles ,
398
361
copyx64ReleaseUWPFiles ,
399
- copyARMDebugUWPFiles ,
400
- copyARMReleaseUWPFiles ,
401
362
copyARM64DebugUWPFiles ,
402
363
copyARM64ReleaseUWPFiles ,
403
364
copyVCXProjUWPFiles )
@@ -408,8 +369,6 @@ const copyUWPFiles = gulp.series(
408
369
copyx86ReleaseUWPFiles ,
409
370
copyx64DebugUWPFiles ,
410
371
copyx64ReleaseUWPFiles ,
411
- copyARMDebugUWPFiles ,
412
- copyARMReleaseUWPFiles ,
413
372
copyARM64DebugUWPFiles ,
414
373
copyARM64ReleaseUWPFiles ,
415
374
copyVCXProjUWPFiles ,
@@ -682,16 +641,13 @@ const packUWPNoBuild = gulp.series(clean, copyPackageFilesUWP, createPackage, cr
682
641
exports . buildTS = buildTS ;
683
642
exports . makeUWPProjectx86 = makeUWPProjectx86 ;
684
643
exports . makeUWPProjectx64 = makeUWPProjectx64 ;
685
- exports . makeUWPProjectARM = makeUWPProjectARM ;
686
644
exports . makeUWPProjectARM64 = makeUWPProjectARM64 ;
687
645
exports . makeUWPProject = makeUWPProject ;
688
646
689
647
exports . buildUWPx86Debug = buildUWPx86Debug ;
690
648
exports . buildUWPx86Release = buildUWPx86Release ;
691
649
exports . buildUWPx64Debug = buildUWPx64Debug ;
692
650
exports . buildUWPx64Release = buildUWPx64Release ;
693
- exports . buildUWPARMDebug = buildUWPARMDebug ;
694
- exports . buildUWPARMRelease = buildUWPARMRelease ;
695
651
exports . buildUWPARM64Debug = buildUWPARM64Debug ;
696
652
exports . buildUWPARM64Release = buildUWPARM64Release ;
697
653
exports . buildUWPProject = buildUWPProject ;
@@ -701,8 +657,6 @@ exports.buildUWPPlaygroundx86Debug = buildUWPPlaygroundx86Debug;
701
657
exports . buildUWPPlaygroundx86Release = buildUWPPlaygroundx86Release ;
702
658
exports . buildUWPPlaygroundx64Debug = buildUWPPlaygroundx64Debug ;
703
659
exports . buildUWPPlaygroundx64Release = buildUWPPlaygroundx64Release ;
704
- exports . buildUWPPlaygroundARMDebug = buildUWPPlaygroundARMDebug ;
705
- exports . buildUWPPlaygroundARMRelease = buildUWPPlaygroundARMRelease ;
706
660
exports . buildUWPPlaygroundARM64Debug = buildUWPPlaygroundARM64Debug ;
707
661
exports . buildUWPPlaygroundARM64Release = buildUWPPlaygroundARM64Release ;
708
662
exports . buildUWPPlayground = buildUWPPlayground ;
0 commit comments