1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/mathml/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,70 @@ 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 +UNIFIED_SOURCES += [ 1.11 + 'nsMathMLChar.cpp', 1.12 + 'nsMathMLContainerFrame.cpp', 1.13 + 'nsMathMLFrame.cpp', 1.14 + 'nsMathMLmactionFrame.cpp', 1.15 + 'nsMathMLmencloseFrame.cpp', 1.16 + 'nsMathMLmfencedFrame.cpp', 1.17 + 'nsMathMLmfracFrame.cpp', 1.18 + 'nsMathMLmmultiscriptsFrame.cpp', 1.19 + 'nsMathMLmoFrame.cpp', 1.20 + 'nsMathMLmpaddedFrame.cpp', 1.21 + 'nsMathMLmphantomFrame.cpp', 1.22 + 'nsMathMLmrootFrame.cpp', 1.23 + 'nsMathMLmrowFrame.cpp', 1.24 + 'nsMathMLmspaceFrame.cpp', 1.25 + 'nsMathMLmsqrtFrame.cpp', 1.26 + 'nsMathMLmtableFrame.cpp', 1.27 + 'nsMathMLmunderoverFrame.cpp', 1.28 + 'nsMathMLOperators.cpp', 1.29 + 'nsMathMLSelectedFrame.cpp', 1.30 + 'nsMathMLsemanticsFrame.cpp', 1.31 + 'nsMathMLTokenFrame.cpp', 1.32 +] 1.33 + 1.34 +EXPORTS += [ 1.35 + 'nsIMathMLFrame.h', 1.36 + 'nsMathMLOperators.h' 1.37 +] 1.38 + 1.39 +FAIL_ON_WARNINGS = True 1.40 + 1.41 +FINAL_LIBRARY = 'gklayout' 1.42 +LOCAL_INCLUDES += [ 1.43 + '../base', 1.44 + '../generic', 1.45 + '../style', 1.46 + '../tables', 1.47 + '../xul', 1.48 + '/content/base/src', 1.49 + '/content/mathml/content/src', 1.50 +] 1.51 + 1.52 +if CONFIG['ENABLE_TESTS']: 1.53 + PARALLEL_DIRS += [ 1.54 + 'tests', 1.55 + ] 1.56 + 1.57 +JAR_MANIFESTS += ['jar.mn'] 1.58 + 1.59 +RESOURCE_FILES.fonts += [ 1.60 + 'mathfont.properties', 1.61 + 'mathfontMathJax_Main.properties', 1.62 + 'mathfontStandardSymbolsL.properties', 1.63 + 'mathfontSTIXNonUnicode.properties', 1.64 + 'mathfontSTIXSizeOneSym.properties', 1.65 + 'mathfontUnicode.properties', 1.66 +] 1.67 + 1.68 +RESOURCE_FILES.fonts['mathfont.properties'].preprocess = True 1.69 + 1.70 +if CONFIG['TARGET_MD_ARCH'] == 'win32': 1.71 + RESOURCE_FILES.fonts += [ 1.72 + 'mathfontSymbol.properties', 1.73 + ]