From f0411cf2d994a79907cc2ff6b60ab103d50497d3 Mon Sep 17 00:00:00 2001 From: Peter Brant Date: Mon, 13 Feb 2017 23:26:40 +0100 Subject: [PATCH] Add image decoder to build --- make.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/make.js b/make.js index ff4c151f0ee68..3c9dc7c425573 100644 --- a/make.js +++ b/make.js @@ -119,6 +119,7 @@ target.generic = function() { mkdir('-p', GENERIC_DIR + BUILD_DIR); mkdir('-p', GENERIC_DIR + '/web'); mkdir('-p', GENERIC_DIR + '/web/cmaps'); + mkdir('-p', GENERIC_DIR + '/web/image_stream_decoder'); var defines = builder.merge(DEFINES, {GENERIC: true}); @@ -131,7 +132,11 @@ target.generic = function() { ['web/compatibility.js', GENERIC_DIR + '/web'], ['web/compressed.tracemonkey-pldi-09.pdf', GENERIC_DIR + '/web'], ['external/bcmaps/*', GENERIC_DIR + '/web/cmaps/'], - ['web/locale', GENERIC_DIR + '/web'] + ['web/locale', GENERIC_DIR + '/web'], + ['web/image_stream_decoder/image_stream_decoder.nmf', + GENERIC_DIR + '/web/image_stream_decoder'], + ['web/image_stream_decoder/image_stream_decoder-v1.0.0.pexe', + GENERIC_DIR + '/web/image_stream_decoder'], ], preprocess: [ [BUILD_TARGETS, GENERIC_DIR + BUILD_DIR],