security/apps/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 #
     2 # This Source Code Form is subject to the terms of the Mozilla Public
     3 # License, v. 2.0. If a copy of the MPL was not distributed with this
     4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     6 GEN_CERT_HEADER = $(srcdir)/gen_cert_header.py
     8 marketplace-prod-public.inc: marketplace-prod-public.crt $(GEN_CERT_HEADER)
     9 	$(PYTHON) $(GEN_CERT_HEADER) marketplaceProdPublicRoot $< > $@
    11 marketplace-prod-reviewers.inc: marketplace-prod-reviewers.crt $(GEN_CERT_HEADER)
    12 	$(PYTHON) $(GEN_CERT_HEADER) marketplaceProdReviewersRoot $< > $@
    14 marketplace-dev-public.inc: marketplace-dev-public.crt $(GEN_CERT_HEADER)
    15 	$(PYTHON) $(GEN_CERT_HEADER) marketplaceDevPublicRoot $< > $@
    17 marketplace-dev-reviewers.inc: marketplace-dev-reviewers.crt $(GEN_CERT_HEADER)
    18 	$(PYTHON) $(GEN_CERT_HEADER) marketplaceDevReviewersRoot $< > $@
    20 xpcshell.inc: $(srcdir)/../manager/ssl/tests/unit/test_signed_apps/trusted_ca1.der $(GEN_CERT_HEADER)
    21 	$(PYTHON) $(GEN_CERT_HEADER) xpcshellRoot $< > $@
    23 export:: \
    24   marketplace-prod-public.inc \
    25   marketplace-prod-reviewers.inc \
    26   marketplace-dev-public.inc \
    27   marketplace-dev-reviewers.inc \
    28   xpcshell.inc \
    29   $(NULL)

mercurial