1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/parser/html/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,103 @@ 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 +XPIDL_SOURCES += [ 1.11 + 'nsIParserUtils.idl', 1.12 + 'nsIScriptableUnescapeHTML.idl', 1.13 +] 1.14 + 1.15 +XPIDL_MODULE = 'html5' 1.16 + 1.17 +EXPORTS += [ 1.18 + 'jArray.h', 1.19 + 'nsAHtml5TreeBuilderState.h', 1.20 + 'nsAHtml5TreeOpSink.h', 1.21 + 'nsHtml5ArrayCopy.h', 1.22 + 'nsHtml5AtomList.h', 1.23 + 'nsHtml5Atoms.h', 1.24 + 'nsHtml5AtomTable.h', 1.25 + 'nsHtml5ByteReadable.h', 1.26 + 'nsHtml5DependentUTF16Buffer.h', 1.27 + 'nsHtml5DocumentBuilder.h', 1.28 + 'nsHtml5DocumentMode.h', 1.29 + 'nsHtml5HtmlAttributes.h', 1.30 + 'nsHtml5Macros.h', 1.31 + 'nsHtml5MetaScanner.h', 1.32 + 'nsHtml5MetaScannerHSupplement.h', 1.33 + 'nsHtml5Module.h', 1.34 + 'nsHtml5NamedCharacters.h', 1.35 + 'nsHtml5NamedCharactersAccel.h', 1.36 + 'nsHtml5OplessBuilder.h', 1.37 + 'nsHtml5OwningUTF16Buffer.h', 1.38 + 'nsHtml5Parser.h', 1.39 + 'nsHtml5PendingNotification.h', 1.40 + 'nsHtml5PlainTextUtils.h', 1.41 + 'nsHtml5RefPtr.h', 1.42 + 'nsHtml5Speculation.h', 1.43 + 'nsHtml5SpeculativeLoad.h', 1.44 + 'nsHtml5StreamListener.h', 1.45 + 'nsHtml5StreamParser.h', 1.46 + 'nsHtml5StringParser.h', 1.47 + 'nsHtml5SVGLoadDispatcher.h', 1.48 + 'nsHtml5TreeOperation.h', 1.49 + 'nsHtml5TreeOpExecutor.h', 1.50 + 'nsHtml5TreeOpStage.h', 1.51 + 'nsHtml5UTF16Buffer.h', 1.52 + 'nsHtml5UTF16BufferHSupplement.h', 1.53 + 'nsHtml5ViewSourceUtils.h', 1.54 + 'nsIContentHandle.h', 1.55 + 'nsParserUtils.h', 1.56 +] 1.57 + 1.58 +UNIFIED_SOURCES += [ 1.59 + 'nsHtml5Atom.cpp', 1.60 + 'nsHtml5Atoms.cpp', 1.61 + 'nsHtml5AtomTable.cpp', 1.62 + 'nsHtml5AttributeName.cpp', 1.63 + 'nsHtml5DependentUTF16Buffer.cpp', 1.64 + 'nsHtml5DocumentBuilder.cpp', 1.65 + 'nsHtml5ElementName.cpp', 1.66 + 'nsHtml5Highlighter.cpp', 1.67 + 'nsHtml5HtmlAttributes.cpp', 1.68 + 'nsHtml5MetaScanner.cpp', 1.69 + 'nsHtml5Module.cpp', 1.70 + 'nsHtml5NamedCharacters.cpp', 1.71 + 'nsHtml5NamedCharactersAccel.cpp', 1.72 + 'nsHtml5OplessBuilder.cpp', 1.73 + 'nsHtml5OwningUTF16Buffer.cpp', 1.74 + 'nsHtml5Parser.cpp', 1.75 + 'nsHtml5PlainTextUtils.cpp', 1.76 + 'nsHtml5Portability.cpp', 1.77 + 'nsHtml5ReleasableAttributeName.cpp', 1.78 + 'nsHtml5ReleasableElementName.cpp', 1.79 + 'nsHtml5Speculation.cpp', 1.80 + 'nsHtml5SpeculativeLoad.cpp', 1.81 + 'nsHtml5StackNode.cpp', 1.82 + 'nsHtml5StateSnapshot.cpp', 1.83 + 'nsHtml5StreamListener.cpp', 1.84 + 'nsHtml5StreamParser.cpp', 1.85 + 'nsHtml5StringParser.cpp', 1.86 + 'nsHtml5SVGLoadDispatcher.cpp', 1.87 + 'nsHtml5Tokenizer.cpp', 1.88 + 'nsHtml5TreeBuilder.cpp', 1.89 + 'nsHtml5TreeOperation.cpp', 1.90 + 'nsHtml5TreeOpExecutor.cpp', 1.91 + 'nsHtml5TreeOpStage.cpp', 1.92 + 'nsHtml5UTF16Buffer.cpp', 1.93 + 'nsHtml5ViewSourceUtils.cpp', 1.94 + 'nsParserUtils.cpp', 1.95 +] 1.96 + 1.97 +MSVC_ENABLE_PGO = True 1.98 + 1.99 +FINAL_LIBRARY = 'gklayout' 1.100 + 1.101 +# DEFINES['ENABLE_VOID_MENUITEM'] = True 1.102 + 1.103 +LOCAL_INCLUDES += [ 1.104 + '../../content/base/src', 1.105 +] 1.106 +