2012-05-18 20:42:01 +04: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-28 00:32:00 +04:00
|
|
|
ifdef MOZ_METRO
|
|
|
|
GENERATED_DIRS = $(DIST)/bin/metro/chrome
|
|
|
|
endif
|
|
|
|
|
2012-05-18 20:42:01 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
exclude_files = \
|
|
|
|
test \
|
2014-09-08 18:48:10 +04:00
|
|
|
README.mozilla \
|
2012-05-18 20:42:01 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2012-09-05 22:43:23 +04:00
|
|
|
$(FINAL_TARGET)/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
2013-12-03 01:34:21 +04:00
|
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
2012-05-18 20:42:01 +04:00
|
|
|
|
2013-10-22 05:39:43 +04: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-03 01:34:21 +04:00
|
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
2013-10-22 05:39:43 +04:00
|
|
|
|
|
|
|
ifdef NIGHTLY_BUILD
|
2013-10-01 03:23:41 +04:00
|
|
|
$(FINAL_TARGET)/chrome/shumway.manifest: $(GLOBAL_DEPS)
|
2013-12-03 01:34:21 +04:00
|
|
|
printf 'manifest shumway/chrome.manifest' > $@
|
2013-10-01 03:23:41 +04:00
|
|
|
|
2013-10-22 05:39:43 +04:00
|
|
|
libs:: $(FINAL_TARGET)/chrome/shumway.manifest
|
2012-05-18 20:42:01 +04:00
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
2013-10-01 03:23:41 +04:00
|
|
|
$(srcdir)/shumway \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/shumway/$(exclude)) \
|
2012-09-05 22:43:23 +04:00
|
|
|
$(FINAL_TARGET)/chrome
|
2013-12-03 01:34:21 +04:00
|
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/shumway.manifest')
|
2013-10-22 05:39:43 +04:00
|
|
|
endif
|
2012-11-28 00:32:00 +04:00
|
|
|
|
|
|
|
ifdef MOZ_METRO
|
2014-01-02 21:15:56 +04:00
|
|
|
ifdef NIGHTLY_BUILD
|
2012-11-28 00:32:00 +04:00
|
|
|
$(DIST)/bin/metro/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
2013-12-03 01:34:21 +04:00
|
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
2012-11-28 00:32:00 +04: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-03 01:34:21 +04:00
|
|
|
$(call py_action,buildlist,$(DIST)/bin/metro/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
2013-10-17 21:49:54 +04: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-28 00:32:00 +04:00
|
|
|
endif
|