1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/xslt/xpath/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,60 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +EXPORTS.mozilla.dom += [ 1.11 + 'XPathEvaluator.h', 1.12 +] 1.13 + 1.14 +UNIFIED_SOURCES += [ 1.15 + 'nsXPathExpression.cpp', 1.16 + 'nsXPathNSResolver.cpp', 1.17 + 'nsXPathResult.cpp', 1.18 + 'txBooleanExpr.cpp', 1.19 + 'txBooleanResult.cpp', 1.20 + 'txCoreFunctionCall.cpp', 1.21 + 'txErrorExpr.cpp', 1.22 + 'txExpr.cpp', 1.23 + 'txExprLexer.cpp', 1.24 + 'txExprParser.cpp', 1.25 + 'txFilterExpr.cpp', 1.26 + 'txForwardContext.cpp', 1.27 + 'txFunctionCall.cpp', 1.28 + 'txLiteralExpr.cpp', 1.29 + 'txLocationStep.cpp', 1.30 + 'txMozillaXPathTreeWalker.cpp', 1.31 + 'txNamedAttributeStep.cpp', 1.32 + 'txNameTest.cpp', 1.33 + 'txNodeSet.cpp', 1.34 + 'txNodeSetAdaptor.cpp', 1.35 + 'txNodeSetContext.cpp', 1.36 + 'txNodeTypeTest.cpp', 1.37 + 'txNumberExpr.cpp', 1.38 + 'txNumberResult.cpp', 1.39 + 'txPathExpr.cpp', 1.40 + 'txPredicatedNodeTest.cpp', 1.41 + 'txPredicateList.cpp', 1.42 + 'txRelationalExpr.cpp', 1.43 + 'txResultRecycler.cpp', 1.44 + 'txRootExpr.cpp', 1.45 + 'txStringResult.cpp', 1.46 + 'txUnaryExpr.cpp', 1.47 + 'txUnionExpr.cpp', 1.48 + 'txUnionNodeTest.cpp', 1.49 + 'txVariableRefExpr.cpp', 1.50 + 'txXPathOptimizer.cpp', 1.51 + 'txXPCOMExtensionFunction.cpp', 1.52 + 'XPathEvaluator.cpp', 1.53 +] 1.54 + 1.55 +FAIL_ON_WARNINGS = True 1.56 + 1.57 +LOCAL_INCLUDES += [ 1.58 + '../base', 1.59 + '../xml', 1.60 + '../xslt', 1.61 +] 1.62 + 1.63 +FINAL_LIBRARY = 'gklayout'