Changeset 64273 in webkit


Ignore:
Timestamp:
Jul 29, 2010 6:33:38 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-07-29 Gyuyoung Kim <gyuyoung.kim@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.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/CMakeLists.txt

    r64206 r64273  
    5050    "${WEBCORE_DIR}/svg/graphics/filters"
    5151    "${WEBCORE_DIR}/websockets"
     52    "${WEBCORE_DIR}/wml"
    5253    "${WEBCORE_DIR}/workers"
    5354    "${WEBCORE_DIR}/xml"
     
    17371738ENDIF()
    17381739
     1740IF (ENABLE_WML)
     1741    LIST(APPEND WebCore_SOURCES
     1742        ${DERIVED_SOURCES_DIR}/WMLElementFactory.cpp
     1743        ${DERIVED_SOURCES_DIR}/WMLNames.cpp
     1744        wml/WMLAElement.cpp
     1745        wml/WMLAccessElement.cpp
     1746        wml/WMLAnchorElement.cpp
     1747        wml/WMLBRElement.cpp
     1748        wml/WMLCardElement.cpp
     1749        wml/WMLDoElement.cpp
     1750        wml/WMLDocument.cpp
     1751        wml/WMLElement.cpp
     1752        wml/WMLErrorHandling.cpp
     1753        wml/WMLEventHandlingElement.cpp
     1754        wml/WMLFieldSetElement.cpp
     1755        wml/WMLFormControlElement.cpp
     1756        wml/WMLGoElement.cpp
     1757        wml/WMLImageElement.cpp
     1758        wml/WMLImageLoader.cpp
     1759        wml/WMLInputElement.cpp
     1760        wml/WMLInsertedLegendElement.cpp
     1761        wml/WMLIntrinsicEvent.cpp
     1762        wml/WMLIntrinsicEventHandler.cpp
     1763        wml/WMLMetaElement.cpp
     1764        wml/WMLNoopElement.cpp
     1765        wml/WMLOnEventElement.cpp
     1766        wml/WMLPElement.cpp
     1767        wml/WMLOptGroupElement.cpp
     1768        wml/WMLOptionElement.cpp
     1769        wml/WMLPageState.cpp
     1770        wml/WMLPostfieldElement.cpp
     1771        wml/WMLPrevElement.cpp
     1772        wml/WMLRefreshElement.cpp
     1773        wml/WMLSelectElement.cpp
     1774        wml/WMLSetvarElement.cpp
     1775        wml/WMLTableElement.cpp
     1776        wml/WMLTaskElement.cpp
     1777        wml/WMLTemplateElement.cpp
     1778        wml/WMLTimerElement.cpp
     1779        wml/WMLVariables.cpp
     1780    )
     1781ENDIF()
     1782
    17391783SET(IDL_INCLUDES "")
    17401784FOREACH (_include ${WebCore_IDL_INCLUDES})
     
    17811825GENERATE_DOM_NAMES_FACTORY(MathML ${WEBCORE_DIR}/mathml/mathtags.in ${WEBCORE_DIR}/mathml/mathattrs.in "${MATHML_FEATURES}")
    17821826GENERATE_DOM_NAMES_FACTORY(SVG ${WEBCORE_DIR}/svg/svgtags.in ${WEBCORE_DIR}/svg/svgattrs.in "${SVG_FEATURES}")
     1827GENERATE_DOM_NAMES_FACTORY(WML ${WEBCORE_DIR}/wml/WMLTagNames.in ${WEBCORE_DIR}/wml/WMLAttributeNames.in "${WML_FEATURES}")
    17831828GENERATE_DOM_NAMES_ONLY(XLink ${WEBCORE_DIR}/svg/xlinkattrs.in)
    17841829GENERATE_DOM_NAMES_ONLY(XMLNS ${WEBCORE_DIR}/xml/xmlnsattrs.in)
  • trunk/WebCore/ChangeLog

    r64272 r64273  
     12010-07-29  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [EFL] Support to enable WML in WebKit EFL
     6        https://bugs.webkit.org/show_bug.cgi?id=43178
     7
     8        WebKit EFL cannot enable WML. WML files are added to CMakeLists.txt
     9        to enable WML in WebKit EFL.
     10
     11        * CMakeLists.txt: Support to enable WML.
     12
    1132010-07-21 Grace Kloba  <klobag@gmail.com> , Antonio Gomes  <tonikitoo@webkit.org>
    214
Note: See TracChangeset for help on using the changeset viewer.