diff -r 000000000000 -r 6474c204b198 browser/extensions/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/browser/extensions/Makefile.in Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,63 @@ +# 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 +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