Skip to content

Commit

Permalink
use new ffmpegChromium option
Browse files Browse the repository at this point in the history
  • Loading branch information
bpasero committed Apr 14, 2016
1 parent cf7ab7f commit b3492a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/gulpfile.vscode.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ var config = {
gulp.task('electron', function () {
// Force windows to use ia32
var arch = process.env.VSCODE_ELECTRON_PLATFORM || (process.platform === 'win32' ? 'ia32' : process.arch);
return electron.dest(path.join(build, 'electron'), _.extend({}, config, { arch: arch }));
return electron.dest(path.join(build, 'electron'), _.extend({}, config, { arch: arch, ffmpegChromium: true }));
});

function mixinProduct() {
Expand Down Expand Up @@ -226,7 +226,7 @@ function packageTask(platform, arch, opts) {
var result = all
.pipe(util.skipDirectories())
.pipe(util.fixWin32DirectoryPermissions())
.pipe(electron(_.extend({}, config, { platform: platform, arch: arch })))
.pipe(electron(_.extend({}, config, { platform: platform, arch: arch, ffmpegChromium: true })))
.pipe(filter(['**', '!LICENSE', '!LICENSES.chromium.html', '!version']));

if (platform === 'win32') {
Expand Down

0 comments on commit b3492a9

Please sign in to comment.