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-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2012-05-18 09:42:01 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2012-09-05 11:43:23 -07:00
|
|
|
CHROMEDIR = $(call core_abspath,$(FINAL_TARGET))/chrome
|
2012-05-18 09:42:01 -07:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
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)
|
2012-05-18 09:42:01 -07:00
|
|
|
printf "manifest pdfjs/chrome.manifest" > $@
|
|
|
|
|
2012-09-05 11:43:23 -07:00
|
|
|
libs:: $(FINAL_TARGET)/chrome/pdfjs.manifest
|
2012-05-18 09:42:01 -07:00
|
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py \
|
|
|
|
$(srcdir)/pdfjs \
|
|
|
|
$(foreach exclude,$(exclude_files), -X $(srcdir)/pdfjs/$(exclude)) \
|
2012-09-05 11:43:23 -07:00
|
|
|
$(FINAL_TARGET)/chrome
|
2012-05-18 09:42:01 -07:00
|
|
|
$(PYTHON) $(MOZILLA_DIR)/config/buildlist.py \
|
2012-09-05 11:43:23 -07:00
|
|
|
$(FINAL_TARGET)/chrome.manifest "manifest chrome/pdfjs.manifest"
|
2012-11-27 12:32:00 -08:00
|
|
|
|
|
|
|
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
|
|
|
|
$(PYTHON) $(MOZILLA_DIR)/config/buildlist.py \
|
|
|
|
$(DIST)/bin/metro/chrome.manifest "manifest chrome/pdfjs.manifest"
|
|
|
|
endif
|