|
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/. |
|
6 |
|
7 EXPORTS.mozilla.dom += [ |
|
8 'XPathEvaluator.h', |
|
9 ] |
|
10 |
|
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 ] |
|
51 |
|
52 FAIL_ON_WARNINGS = True |
|
53 |
|
54 LOCAL_INCLUDES += [ |
|
55 '../base', |
|
56 '../xml', |
|
57 '../xslt', |
|
58 ] |
|
59 |
|
60 FINAL_LIBRARY = 'gklayout' |