[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:33:35 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 69e59f31ba9cf423f0cf12b10a424ba48a8abcd4
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jul 29 13:33:38 2010 +0000

    2010-07-29  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            [EFL] Support to enable WML in WebKit EFL
            https://bugs.webkit.org/show_bug.cgi?id=43178
    
            WebKit EFL cannot enable WML. WML files are added to CMakeLists.txt
            to enable WML in WebKit EFL.
    
            * CMakeLists.txt: Support to enable WML.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64273 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/CMakeLists.txt b/WebCore/CMakeLists.txt
index a0f5123..69a21d8 100644
--- a/WebCore/CMakeLists.txt
+++ b/WebCore/CMakeLists.txt
@@ -49,6 +49,7 @@ SET(WebCore_INCLUDE_DIRECTORIES
     "${WEBCORE_DIR}/svg/graphics"
     "${WEBCORE_DIR}/svg/graphics/filters"
     "${WEBCORE_DIR}/websockets"
+    "${WEBCORE_DIR}/wml"
     "${WEBCORE_DIR}/workers"
     "${WEBCORE_DIR}/xml"
     "${JAVASCRIPTCORE_DIR}"
@@ -1736,6 +1737,49 @@ IF (ENABLE_SVG)
     )
 ENDIF()
 
+IF (ENABLE_WML)
+    LIST(APPEND WebCore_SOURCES
+        ${DERIVED_SOURCES_DIR}/WMLElementFactory.cpp
+        ${DERIVED_SOURCES_DIR}/WMLNames.cpp
+        wml/WMLAElement.cpp
+        wml/WMLAccessElement.cpp
+        wml/WMLAnchorElement.cpp
+        wml/WMLBRElement.cpp
+        wml/WMLCardElement.cpp
+        wml/WMLDoElement.cpp
+        wml/WMLDocument.cpp
+        wml/WMLElement.cpp
+        wml/WMLErrorHandling.cpp
+        wml/WMLEventHandlingElement.cpp
+        wml/WMLFieldSetElement.cpp
+        wml/WMLFormControlElement.cpp
+        wml/WMLGoElement.cpp
+        wml/WMLImageElement.cpp
+        wml/WMLImageLoader.cpp
+        wml/WMLInputElement.cpp
+        wml/WMLInsertedLegendElement.cpp
+        wml/WMLIntrinsicEvent.cpp
+        wml/WMLIntrinsicEventHandler.cpp
+        wml/WMLMetaElement.cpp
+        wml/WMLNoopElement.cpp
+        wml/WMLOnEventElement.cpp
+        wml/WMLPElement.cpp
+        wml/WMLOptGroupElement.cpp
+        wml/WMLOptionElement.cpp
+        wml/WMLPageState.cpp
+        wml/WMLPostfieldElement.cpp
+        wml/WMLPrevElement.cpp
+        wml/WMLRefreshElement.cpp
+        wml/WMLSelectElement.cpp
+        wml/WMLSetvarElement.cpp
+        wml/WMLTableElement.cpp
+        wml/WMLTaskElement.cpp
+        wml/WMLTemplateElement.cpp
+        wml/WMLTimerElement.cpp
+        wml/WMLVariables.cpp
+    )
+ENDIF()
+
 SET(IDL_INCLUDES "")
 FOREACH (_include ${WebCore_IDL_INCLUDES})
     LIST(APPEND IDL_INCLUDES --include=${WEBCORE_DIR}/${_include})
@@ -1780,6 +1824,7 @@ ADD_SOURCE_DERIVED_DEPENDENCIES(${WEBCORE_DIR}/css/CSSStyleSelector.cpp UserAgen
 GENERATE_DOM_NAMES_FACTORY(HTML ${WEBCORE_DIR}/html/HTMLTagNames.in ${WEBCORE_DIR}/html/HTMLAttributeNames.in "${HTML_FEATURES}")
 GENERATE_DOM_NAMES_FACTORY(MathML ${WEBCORE_DIR}/mathml/mathtags.in ${WEBCORE_DIR}/mathml/mathattrs.in "${MATHML_FEATURES}")
 GENERATE_DOM_NAMES_FACTORY(SVG ${WEBCORE_DIR}/svg/svgtags.in ${WEBCORE_DIR}/svg/svgattrs.in "${SVG_FEATURES}")
+GENERATE_DOM_NAMES_FACTORY(WML ${WEBCORE_DIR}/wml/WMLTagNames.in ${WEBCORE_DIR}/wml/WMLAttributeNames.in "${WML_FEATURES}")
 GENERATE_DOM_NAMES_ONLY(XLink ${WEBCORE_DIR}/svg/xlinkattrs.in)
 GENERATE_DOM_NAMES_ONLY(XMLNS ${WEBCORE_DIR}/xml/xmlnsattrs.in)
 GENERATE_DOM_NAMES_ONLY(XML ${WEBCORE_DIR}/xml/xmlattrs.in)
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 4156b5b..e6c7ba1 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-29  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        [EFL] Support to enable WML in WebKit EFL
+        https://bugs.webkit.org/show_bug.cgi?id=43178
+
+        WebKit EFL cannot enable WML. WML files are added to CMakeLists.txt
+        to enable WML in WebKit EFL.
+
+        * CMakeLists.txt: Support to enable WML.
+
 2010-07-21 Grace Kloba  <klobag at gmail.com> , Antonio Gomes  <tonikitoo at webkit.org>
 
         Reviewed by David Hyatt.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list