xulrunner/build.mk

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 installer:
     6 	@echo 'XULRunner doesn't have an installer yet.'
     8 package:
     9 	@$(MAKE) -C xulrunner/installer
    11 install:
    12 	@$(MAKE) -C xulrunner/installer install
    14 sdk:
    15 	@$(MAKE) -C xulrunner/installer make-sdk
    17 distclean::
    18 	@$(MAKE) -C xulrunner/installer distclean
    20 source-package::
    21 	@$(MAKE) -C xulrunner/installer source-package
    23 upload::
    24 	@$(MAKE) -C xulrunner/installer upload
    26 source-upload::
    27 	@$(MAKE) -C xulrunner/installer source-upload
    29 hg-bundle::
    30 	@$(MAKE) -C xulrunner/installer hg-bundle
    32 ifeq ($(OS_TARGET),Linux)
    33 deb: package
    34 	@$(MAKE) -C xulrunner/installer deb
    35 endif

mercurial