Changeset 43758 in webkit


Ignore:
Timestamp:
May 15, 2009 12:06:43 AM (15 years ago)
Author:
eric@webkit.org
Message:

2009-05-15 Laszlo Gombos <Laszlo Gombos>

Reviewed by Holger Freyther.

https://bugs.webkit.org/show_bug.cgi?id=25731
[Qt] Cleanup - move files exclusive to XPATH and XSLT under the
appropriate build section

  • WebCore.pro:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r43756 r43758  
     12009-05-15  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=25731
     6        [Qt] Cleanup - move files exclusive to XPATH and XSLT under the
     7        appropriate build section
     8
     9        * WebCore.pro:
     10
    1112009-05-14  Evan Martin  <evan@chromium.org>
    212
  • trunk/WebCore/WebCore.pro

    r43669 r43758  
    105105!contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=.): DEFINES += ENABLE_DASHBOARD_SUPPORT=0
    106106!contains(DEFINES, ENABLE_XPATH=.): DEFINES += ENABLE_XPATH=1
     107!contains(DEFINES, ENABLE_XSLT=.): DEFINES += ENABLE_XSLT=0
    107108#!contains(DEFINES, ENABLE_XBL=.): DEFINES += ENABLE_XBL=1
    108109!contains(DEFINES, ENABLE_WML=.): DEFINES += ENABLE_WML=0
     
    403404    xml/XMLHttpRequestProgressEvent.idl \
    404405    xml/XMLHttpRequestUpload.idl \
    405     xml/XMLSerializer.idl \
    406     xml/XSLTProcessor.idl
     406    xml/XMLSerializer.idl
    407407
    408408
     
    475475    bindings/js/JSXMLHttpRequestCustom.cpp \
    476476    bindings/js/JSXMLHttpRequestUploadCustom.cpp \
    477     bindings/js/JSXSLTProcessorConstructor.cpp \
    478     bindings/js/JSXSLTProcessorCustom.cpp \
    479477    bindings/js/JSPluginCustom.cpp \
    480478    bindings/js/JSPluginArrayCustom.cpp \
     
    10671065    rendering/style/StyleVisualData.cpp \
    10681066    xml/DOMParser.cpp \
    1069     xml/NativeXPathNSResolver.cpp \
    10701067    xml/XMLHttpRequest.cpp \
    10711068    xml/XMLHttpRequestUpload.cpp \
    1072     xml/XMLSerializer.cpp \
    1073     xml/XPathEvaluator.cpp \
    1074     xml/XPathExpression.cpp \
    1075     xml/XPathExpressionNode.cpp \
    1076     xml/XPathFunctions.cpp \
    1077     xml/XPathNamespace.cpp \
    1078     xml/XPathNodeSet.cpp \
    1079     xml/XPathNSResolver.cpp \
    1080     xml/XPathParser.cpp \
    1081     xml/XPathPath.cpp \
    1082     xml/XPathPredicate.cpp \
    1083     xml/XPathResult.cpp \
    1084     xml/XPathStep.cpp \
    1085     xml/XPathUtil.cpp \
    1086     xml/XPathValue.cpp \
    1087     xml/XPathVariableReference.cpp \
    1088     xml/XSLImportRule.cpp \
    1089     xml/XSLStyleSheet.cpp \
    1090     xml/XSLTExtensions.cpp \
    1091     xml/XSLTUnicodeSort.cpp \
    1092     xml/XSLTProcessor.cpp
     1069    xml/XMLSerializer.cpp
    10931070
    10941071HEADERS += \
     
    14551432        xml/XPathResult.idl \
    14561433        xml/XPathEvaluator.idl
     1434
     1435    SOURCES += \
     1436        xml/NativeXPathNSResolver.cpp \
     1437        xml/XPathEvaluator.cpp \
     1438        xml/XPathExpression.cpp \
     1439        xml/XPathExpressionNode.cpp \
     1440        xml/XPathFunctions.cpp \
     1441        xml/XPathNamespace.cpp \
     1442        xml/XPathNodeSet.cpp \
     1443        xml/XPathNSResolver.cpp \
     1444        xml/XPathParser.cpp \
     1445        xml/XPathPath.cpp \
     1446        xml/XPathPredicate.cpp \
     1447        xml/XPathResult.cpp \
     1448        xml/XPathStep.cpp \
     1449        xml/XPathUtil.cpp \
     1450        xml/XPathValue.cpp \
     1451        xml/XPathVariableReference.cpp
    14571452}
    14581453
     
    14711466        LIBS += -llibxml2 -llibxslt
    14721467    }
     1468
     1469    IDL_BINDINGS += \
     1470        xml/XSLTProcessor.idl
     1471
     1472    SOURCES += \
     1473        bindings/js/JSXSLTProcessorConstructor.cpp \
     1474        bindings/js/JSXSLTProcessorCustom.cpp \
     1475        xml/XSLImportRule.cpp \
     1476        xml/XSLStyleSheet.cpp \
     1477        xml/XSLTExtensions.cpp \
     1478        xml/XSLTProcessor.cpp \
     1479        xml/XSLTUnicodeSort.cpp
    14731480}
    14741481
Note: See TracChangeset for help on using the changeset viewer.