From 1453ad4b234080ec49ab2c36d76d4fc942f2ccca Mon Sep 17 00:00:00 2001 From: Jay Rodgers Date: Tue, 11 Sep 2018 14:40:52 +0100 Subject: [PATCH] Adding electron ARM and ARM64 tasks Adding tasks to allow for explicitly download ARM and ARM64 versions of Electron when it is not the native architecture of the build machine (for cross-compiling). --- build/gulpfile.vscode.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/gulpfile.vscode.js b/build/gulpfile.vscode.js index 46c045e0e89..5d7e6467b5b 100644 --- a/build/gulpfile.vscode.js +++ b/build/gulpfile.vscode.js @@ -166,6 +166,8 @@ gulp.task('clean-electron', util.rimraf('.build/electron')); gulp.task('electron', ['clean-electron'], getElectron(process.arch)); gulp.task('electron-ia32', ['clean-electron'], getElectron('ia32')); gulp.task('electron-x64', ['clean-electron'], getElectron('x64')); +gulp.task('electron-arm', ['clean-electron'], getElectron('arm')); +gulp.task('electron-arm64', ['clean-electron'], getElectron('arm64')); /**