Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | UNIFIED_SOURCES += [ |
michael@0 | 8 | 'nsMathMLChar.cpp', |
michael@0 | 9 | 'nsMathMLContainerFrame.cpp', |
michael@0 | 10 | 'nsMathMLFrame.cpp', |
michael@0 | 11 | 'nsMathMLmactionFrame.cpp', |
michael@0 | 12 | 'nsMathMLmencloseFrame.cpp', |
michael@0 | 13 | 'nsMathMLmfencedFrame.cpp', |
michael@0 | 14 | 'nsMathMLmfracFrame.cpp', |
michael@0 | 15 | 'nsMathMLmmultiscriptsFrame.cpp', |
michael@0 | 16 | 'nsMathMLmoFrame.cpp', |
michael@0 | 17 | 'nsMathMLmpaddedFrame.cpp', |
michael@0 | 18 | 'nsMathMLmphantomFrame.cpp', |
michael@0 | 19 | 'nsMathMLmrootFrame.cpp', |
michael@0 | 20 | 'nsMathMLmrowFrame.cpp', |
michael@0 | 21 | 'nsMathMLmspaceFrame.cpp', |
michael@0 | 22 | 'nsMathMLmsqrtFrame.cpp', |
michael@0 | 23 | 'nsMathMLmtableFrame.cpp', |
michael@0 | 24 | 'nsMathMLmunderoverFrame.cpp', |
michael@0 | 25 | 'nsMathMLOperators.cpp', |
michael@0 | 26 | 'nsMathMLSelectedFrame.cpp', |
michael@0 | 27 | 'nsMathMLsemanticsFrame.cpp', |
michael@0 | 28 | 'nsMathMLTokenFrame.cpp', |
michael@0 | 29 | ] |
michael@0 | 30 | |
michael@0 | 31 | EXPORTS += [ |
michael@0 | 32 | 'nsIMathMLFrame.h', |
michael@0 | 33 | 'nsMathMLOperators.h' |
michael@0 | 34 | ] |
michael@0 | 35 | |
michael@0 | 36 | FAIL_ON_WARNINGS = True |
michael@0 | 37 | |
michael@0 | 38 | FINAL_LIBRARY = 'gklayout' |
michael@0 | 39 | LOCAL_INCLUDES += [ |
michael@0 | 40 | '../base', |
michael@0 | 41 | '../generic', |
michael@0 | 42 | '../style', |
michael@0 | 43 | '../tables', |
michael@0 | 44 | '../xul', |
michael@0 | 45 | '/content/base/src', |
michael@0 | 46 | '/content/mathml/content/src', |
michael@0 | 47 | ] |
michael@0 | 48 | |
michael@0 | 49 | if CONFIG['ENABLE_TESTS']: |
michael@0 | 50 | PARALLEL_DIRS += [ |
michael@0 | 51 | 'tests', |
michael@0 | 52 | ] |
michael@0 | 53 | |
michael@0 | 54 | JAR_MANIFESTS += ['jar.mn'] |
michael@0 | 55 | |
michael@0 | 56 | RESOURCE_FILES.fonts += [ |
michael@0 | 57 | 'mathfont.properties', |
michael@0 | 58 | 'mathfontMathJax_Main.properties', |
michael@0 | 59 | 'mathfontStandardSymbolsL.properties', |
michael@0 | 60 | 'mathfontSTIXNonUnicode.properties', |
michael@0 | 61 | 'mathfontSTIXSizeOneSym.properties', |
michael@0 | 62 | 'mathfontUnicode.properties', |
michael@0 | 63 | ] |
michael@0 | 64 | |
michael@0 | 65 | RESOURCE_FILES.fonts['mathfont.properties'].preprocess = True |
michael@0 | 66 | |
michael@0 | 67 | if CONFIG['TARGET_MD_ARCH'] == 'win32': |
michael@0 | 68 | RESOURCE_FILES.fonts += [ |
michael@0 | 69 | 'mathfontSymbol.properties', |
michael@0 | 70 | ] |