mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
100 lines
2.4 KiB
Makefile
100 lines
2.4 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = html5
|
|
LIBRARY_NAME = html5p_s
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
XPIDLSRCS = \
|
|
nsIParserUtils.idl \
|
|
nsIScriptableUnescapeHTML.idl \
|
|
$(NULL)
|
|
|
|
EXPORTS = \
|
|
jArray.h \
|
|
nsAHtml5TreeBuilderState.h \
|
|
nsHtml5ArrayCopy.h \
|
|
nsHtml5Atoms.h \
|
|
nsHtml5AtomList.h \
|
|
nsHtml5AtomTable.h \
|
|
nsHtml5ByteReadable.h \
|
|
nsHtml5DocumentMode.h \
|
|
nsHtml5HtmlAttributes.h \
|
|
nsHtml5Macros.h \
|
|
nsHtml5MetaScanner.h \
|
|
nsHtml5MetaScannerHSupplement.h \
|
|
nsHtml5Module.h \
|
|
nsHtml5NamedCharacters.h \
|
|
nsHtml5NamedCharactersAccel.h \
|
|
nsHtml5Parser.h \
|
|
nsHtml5PendingNotification.h \
|
|
nsHtml5Speculation.h \
|
|
nsHtml5SpeculativeLoad.h \
|
|
nsHtml5StreamParser.h \
|
|
nsHtml5SVGLoadDispatcher.h \
|
|
nsHtml5TreeOperation.h \
|
|
nsHtml5TreeOpExecutor.h \
|
|
nsAHtml5TreeOpSink.h \
|
|
nsHtml5TreeOpStage.h \
|
|
nsHtml5UTF16Buffer.h \
|
|
nsHtml5UTF16BufferHSupplement.h \
|
|
nsHtml5DependentUTF16Buffer.h \
|
|
nsHtml5OwningUTF16Buffer.h \
|
|
nsHtml5ViewSourceUtils.h \
|
|
nsHtml5StringParser.h \
|
|
nsParserUtils.h \
|
|
$(NULL)
|
|
|
|
CPPSRCS = \
|
|
nsHtml5Atoms.cpp \
|
|
nsHtml5Atom.cpp \
|
|
nsHtml5AtomTable.cpp \
|
|
nsHtml5Parser.cpp \
|
|
nsHtml5AttributeName.cpp \
|
|
nsHtml5ElementName.cpp \
|
|
nsHtml5HtmlAttributes.cpp \
|
|
nsHtml5StackNode.cpp \
|
|
nsHtml5UTF16Buffer.cpp \
|
|
nsHtml5DependentUTF16Buffer.cpp \
|
|
nsHtml5OwningUTF16Buffer.cpp \
|
|
nsHtml5NamedCharacters.cpp \
|
|
nsHtml5NamedCharactersAccel.cpp \
|
|
nsHtml5Tokenizer.cpp \
|
|
nsHtml5TreeBuilder.cpp \
|
|
nsHtml5Portability.cpp \
|
|
nsHtml5Module.cpp \
|
|
nsHtml5ReleasableAttributeName.cpp \
|
|
nsHtml5ReleasableElementName.cpp \
|
|
nsHtml5MetaScanner.cpp \
|
|
nsHtml5TreeOperation.cpp \
|
|
nsHtml5TreeOpStage.cpp \
|
|
nsHtml5StateSnapshot.cpp \
|
|
nsHtml5TreeOpExecutor.cpp \
|
|
nsHtml5StreamParser.cpp \
|
|
nsHtml5Speculation.cpp \
|
|
nsHtml5SpeculativeLoad.cpp \
|
|
nsHtml5SVGLoadDispatcher.cpp \
|
|
nsHtml5Highlighter.cpp \
|
|
nsHtml5ViewSourceUtils.cpp \
|
|
nsHtml5StringParser.cpp \
|
|
nsParserUtils.cpp \
|
|
$(NULL)
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
INCLUDES += \
|
|
-I$(srcdir)/../../content/base/src \
|
|
$(NULL)
|
|
|
|
#DEFINES += -DENABLE_VOID_MENUITEM
|