set(xml_SRC
        ${xml_SRC}

	WebCore/xml/DOMParser.cpp
	WebCore/xml/XMLSerializer.cpp
)
IF (WEBKIT_USE_XSLT_SUPPORT)
    set(xml_SRC
        ${xml_SRC}
    WebCore/xml/XSLImportRule.cpp
    WebCore/xml/XSLStyleSheet.cpp
    WebCore/xml/XSLTExtensions.cpp
    WebCore/xml/XSLTProcessor.cpp)
ENDIF (WEBKIT_USE_XSLT_SUPPORT)

IF (WEBKIT_USE_JS)
    set(xml_SRC ${xml_SRC}
    WebCore/xml/XMLHttpRequest.cpp)
ENDIF (WEBKIT_USE_JS)

IF (WEBKIT_USE_XPATH_SUPPORT)
    set(xml_SRC ${xml_SRC}
    WebCore/xml/NativeXPathNSResolver.cpp
    WebCore/xml/XPathEvaluator.cpp
    WebCore/xml/XPathExpression.cpp
    WebCore/xml/XPathExpressionNode.cpp
    WebCore/xml/XPathFunctions.cpp
    WebCore/xml/XPathNamespace.cpp
    WebCore/xml/XPathNodeSet.cpp
    WebCore/xml/XPathNSResolver.cpp
    WebCore/xml/XPathParser.cpp
    WebCore/xml/XPathPath.cpp
    WebCore/xml/XPathPredicate.cpp
    WebCore/xml/XPathResult.cpp
    WebCore/xml/XPathStep.cpp
    WebCore/xml/XPathUtil.cpp
    WebCore/xml/XPathValue.cpp
    WebCore/xml/XPathVariableReference.cpp)
ENDIF (WEBKIT_USE_XPATH_SUPPORT)


