addon-sdk/Makefile.in

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 # This Source Code Form is subject to the terms of the Mozilla Public
     2 # License, v. 2.0. If a copy of the MPL was not distributed with this
     3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     5 include $(topsrcdir)/config/config.mk
     7 ifeq (gonk,$(MOZ_WIDGET_TOOLKIT))
     8 MOZ_B2G=1
     9 else
    10 MOZ_B2G=0
    11 endif
    13 libs::
    14 	$(PYTHON) $(srcdir)/copy_source.py $(topsrcdir) $(srcdir)/source/lib $(FINAL_TARGET)/modules/commonjs $(MOZ_B2G) >copy_source.mk
    15 	$(MAKE) -f copy_source.mk libs
    17 include $(topsrcdir)/config/rules.mk
    19 TEST_FILES = \
    20   source/app-extension \
    21   source/bin \
    22   source/python-lib \
    23   source/test \
    24   source/package.json \
    25   source/mapping.json \
    26   $(NULL)
    28 # Remove this once the test harness uses the APIs built into Firefox
    29 TEST_FILES += source/lib
    31 PKG_STAGE = $(DIST)/test-package-stage
    33 stage-tests-package:: $(TEST_FILES)
    34 	$(INSTALL) $^ $(PKG_STAGE)/jetpack

mercurial