2012-05-18 09:42:01 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2012-11-27 12:32:00 -08:00
|
|
|
ifdef MOZ_METRO
|
|
|
|
GENERATED_DIRS = $(DIST)/bin/metro/chrome
|
|
|
|
endif
|
|
|
|
|
2012-05-18 09:42:01 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
exclude_files = \
|
|
|
|
test \
|
|
|
|
install.rdf \
|
|
|
|
bootstrap.js \
|
|
|
|
icon.png \
|
|
|
|
icon64.png \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-09-05 11:43:23 -07:00
|
|
|
$(FINAL_TARGET)/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
2013-12-02 13:34:21 -08:00
|
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
2012-05-18 09:42:01 -07:00
|
|
|
|
2013-10-21 18:39:43 -07:00
|
|
|
libs:: $(FINAL_TARGET)/chrome/pdfjs.manifest
|
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
|
|
$(srcdir)/pdfjs \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/pdfjs/$(exclude)) \
|
|
|
|
$(FINAL_TARGET)/chrome
|
2013-12-02 13:34:21 -08:00
|
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
2013-10-21 18:39:43 -07:00
|
|
|
|
|
|
|
ifdef NIGHTLY_BUILD
|
2013-09-30 16:23:41 -07:00
|
|
|
$(FINAL_TARGET)/chrome/shumway.manifest: $(GLOBAL_DEPS)
|
2013-12-02 13:34:21 -08:00
|
|
|
printf 'manifest shumway/chrome.manifest' > $@
|
2013-09-30 16:23:41 -07:00
|
|
|
|
2013-10-21 18:39:43 -07:00
|
|
|
libs:: $(FINAL_TARGET)/chrome/shumway.manifest
|
2012-05-18 09:42:01 -07:00
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
2013-09-30 16:23:41 -07:00
|
|
|
$(srcdir)/shumway \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/shumway/$(exclude)) \
|
2012-09-05 11:43:23 -07:00
|
|
|
$(FINAL_TARGET)/chrome
|
2013-12-02 13:34:21 -08:00
|
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/shumway.manifest')
|
2013-10-21 18:39:43 -07:00
|
|
|
endif
|
2012-11-27 12:32:00 -08:00
|
|
|
|
|
|
|
ifdef MOZ_METRO
|
2014-01-02 09:15:56 -08:00
|
|
|
ifdef NIGHTLY_BUILD
|
2012-11-27 12:32:00 -08:00
|
|
|
$(DIST)/bin/metro/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
2013-12-02 13:34:21 -08:00
|
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
2012-11-27 12:32:00 -08:00
|
|
|
|
|
|
|
libs:: $(DIST)/bin/metro/chrome/pdfjs.manifest
|
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
|
|
$(srcdir)/pdfjs \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/pdfjs/$(exclude)) \
|
|
|
|
$(DIST)/bin/metro/chrome
|
2013-12-02 13:34:21 -08:00
|
|
|
$(call py_action,buildlist,$(DIST)/bin/metro/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
2013-10-17 10:49:54 -07:00
|
|
|
|
|
|
|
$(DIST)/bin/metro/chrome/shumway.manifest: $(GLOBAL_DEPS)
|
|
|
|
printf 'manifest shumway/chrome.manifest' > $@
|
|
|
|
|
|
|
|
libs:: $(DIST)/bin/metro/chrome/shumway.manifest
|
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
|
|
$(srcdir)/shumway \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/shumway/$(exclude)) \
|
|
|
|
$(DIST)/bin/metro/chrome
|
|
|
|
$(call py_action,buildlist,$(DIST)/bin/metro/chrome.manifest 'manifest chrome/shumway.manifest')
|
|
|
|
endif
|
2012-11-27 12:32:00 -08:00
|
|
|
endif
|