mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
64 lines
2.1 KiB
Makefile
64 lines
2.1 KiB
Makefile
# 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/.
|
|
|
|
ifdef MOZ_METRO
|
|
GENERATED_DIRS = $(DIST)/bin/metro/chrome
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
exclude_files = \
|
|
test \
|
|
install.rdf \
|
|
bootstrap.js \
|
|
icon.png \
|
|
icon64.png \
|
|
$(NULL)
|
|
|
|
$(FINAL_TARGET)/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
|
|
|
libs:: $(FINAL_TARGET)/chrome/pdfjs.manifest
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
$(srcdir)/pdfjs \
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/pdfjs/$(exclude)) \
|
|
$(FINAL_TARGET)/chrome
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
|
|
|
ifdef NIGHTLY_BUILD
|
|
$(FINAL_TARGET)/chrome/shumway.manifest: $(GLOBAL_DEPS)
|
|
printf 'manifest shumway/chrome.manifest' > $@
|
|
|
|
libs:: $(FINAL_TARGET)/chrome/shumway.manifest
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
$(srcdir)/shumway \
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/shumway/$(exclude)) \
|
|
$(FINAL_TARGET)/chrome
|
|
$(call py_action,buildlist,$(FINAL_TARGET)/chrome.manifest 'manifest chrome/shumway.manifest')
|
|
endif
|
|
|
|
ifdef MOZ_METRO
|
|
$(DIST)/bin/metro/chrome/pdfjs.manifest: $(GLOBAL_DEPS)
|
|
printf 'manifest pdfjs/chrome.manifest' > $@
|
|
|
|
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
|
|
$(call py_action,buildlist,$(DIST)/bin/metro/chrome.manifest 'manifest chrome/pdfjs.manifest')
|
|
|
|
ifdef NIGHTLY_BUILD
|
|
$(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
|
|
endif
|