services/healthreport/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 modules := \
     6   healthreporter.jsm \
     7   profile.jsm \
     8   providers.jsm \
     9   $(NULL)
    11 testing_modules := \
    12   utils.jsm \
    13   $(NULL)
    15 healthreport_depends = \
    16   HealthReport.jsm \
    17   ../common/async.js \
    18   ../common/bagheeraclient.js \
    19   ../metrics/Metrics.jsm \
    20   ../metrics/providermanager.jsm \
    21   ../metrics/dataprovider.jsm \
    22   ../metrics/storage.jsm \
    23   healthreporter.jsm \
    24   profile.jsm \
    25   providers.jsm \
    26   $(NULL)
    29 MAIN_JS_MODULE := HealthReport.jsm
    30 MAIN_JS_MODULE_PATH = $(FINAL_TARGET)/modules
    31 MAIN_JS_MODULE_FLAGS := $(extra_pp_flags)
    32 PP_TARGETS += MAIN_JS_MODULE
    34 MODULES := $(modules)
    35 MODULES_PATH = $(FINAL_TARGET)/modules/services/healthreport
    36 MODULES_FLAGS := $(extra_pp_flags)
    37 PP_TARGETS += MODULES
    39 TESTING_JS_MODULES := $(addprefix modules-testing/,$(testing_modules))
    40 TESTING_JS_MODULE_DIR := services/healthreport
    42 include $(topsrcdir)/config/rules.mk
    44 # Add extra prerequisites until bug 837792 is addressed.
    45 $(FINAL_TARGET)/modules/HealthReport.jsm: $(healthreport_depends)

mercurial