mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
61 lines
2.1 KiB
Makefile
61 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 \
|
|
README.mozilla \
|
|
$(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
|
|
ifdef NIGHTLY_BUILD
|
|
$(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')
|
|
|
|
$(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
|