dom/xslt/xpath/moz.build

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 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
     2 # vim: set filetype=python:
     3 # This Source Code Form is subject to the terms of the Mozilla Public
     4 # License, v. 2.0. If a copy of the MPL was not distributed with this
     5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
     7 EXPORTS.mozilla.dom += [
     8     'XPathEvaluator.h',
     9 ]
    11 UNIFIED_SOURCES += [
    12     'nsXPathExpression.cpp',
    13     'nsXPathNSResolver.cpp',
    14     'nsXPathResult.cpp',
    15     'txBooleanExpr.cpp',
    16     'txBooleanResult.cpp',
    17     'txCoreFunctionCall.cpp',
    18     'txErrorExpr.cpp',
    19     'txExpr.cpp',
    20     'txExprLexer.cpp',
    21     'txExprParser.cpp',
    22     'txFilterExpr.cpp',
    23     'txForwardContext.cpp',
    24     'txFunctionCall.cpp',
    25     'txLiteralExpr.cpp',
    26     'txLocationStep.cpp',
    27     'txMozillaXPathTreeWalker.cpp',
    28     'txNamedAttributeStep.cpp',
    29     'txNameTest.cpp',
    30     'txNodeSet.cpp',
    31     'txNodeSetAdaptor.cpp',
    32     'txNodeSetContext.cpp',
    33     'txNodeTypeTest.cpp',
    34     'txNumberExpr.cpp',
    35     'txNumberResult.cpp',
    36     'txPathExpr.cpp',
    37     'txPredicatedNodeTest.cpp',
    38     'txPredicateList.cpp',
    39     'txRelationalExpr.cpp',
    40     'txResultRecycler.cpp',
    41     'txRootExpr.cpp',
    42     'txStringResult.cpp',
    43     'txUnaryExpr.cpp',
    44     'txUnionExpr.cpp',
    45     'txUnionNodeTest.cpp',
    46     'txVariableRefExpr.cpp',
    47     'txXPathOptimizer.cpp',
    48     'txXPCOMExtensionFunction.cpp',
    49     'XPathEvaluator.cpp',
    50 ]
    52 FAIL_ON_WARNINGS = True
    54 LOCAL_INCLUDES += [
    55     '../base',
    56     '../xml',
    57     '../xslt',
    58 ]
    60 FINAL_LIBRARY = 'gklayout'

mercurial