Changeset 91742 in webkit


Ignore:
Timestamp:
Jul 25, 2011 10:21:06 PM (13 years ago)
Author:
ryuan.choi@samsung.com
Message:

[CMAKE] Split JSC related files from WebCore/CMakeLists.txt
https://bugs.webkit.org/show_bug.cgi?id=61350

Reviewed by Daniel Bates.

No new tests, just moving jsc related files from CMakeLists.txt to UseJSC.cmake.

  • CMakeLists.txt:
  • UseJSC.cmake:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r91594 r91742  
    420420    bindings/generic/ActiveDOMCallback.cpp
    421421    bindings/generic/RuntimeEnabledFeatures.cpp
    422 
    423     bindings/js/CallbackFunction.cpp
    424422
    425423    css/CSSBorderImageValue.cpp
     
    15221520
    15231521IF (ENABLE_NOTIFICATIONS)
    1524     LIST(APPEND WebCore_SOURCES
    1525         bindings/js/JSDesktopNotificationsCustom.cpp
    1526     )
    15271522    LIST(APPEND WebCore_IDL_FILES
    15281523        notifications/Notification.idl
     
    15331528if (ENABLE_FILE_SYSTEM)
    15341529    LIST(APPEND WebCore_SOURCES
    1535         bindings/js/JSDirectoryEntryCustom.cpp
    1536         bindings/js/JSDirectoryEntrySyncCustom.cpp
    1537         bindings/js/JSEntryCustom.cpp
    1538         bindings/js/JSEntrySyncCustom.cpp
    15391530        fileapi/DirectoryEntry.cpp
    15401531        fileapi/DirectoryEntrySync.cpp
     
    15971588IF (ENABLE_SVG)
    15981589    LIST(APPEND WebCore_SOURCES
    1599         bindings/js/JSSVGElementInstanceCustom.cpp
    1600         bindings/js/JSSVGLengthCustom.cpp
    1601         bindings/js/JSSVGPathSegCustom.cpp
    16021590        css/SVGCSSComputedStyleDeclaration.cpp
    16031591        css/SVGCSSParser.cpp
     
    19731961IF (ENABLE_VIDEO)
    19741962    LIST(APPEND WebCore_SOURCES
    1975         bindings/js/JSAudioConstructor.cpp
    19761963        html/HTMLAudioElement.cpp
    19771964        html/HTMLMediaElement.cpp
     
    20152002IF (ENABLE_MEDIA_STREAM)
    20162003    LIST(APPEND WebCore_SOURCES
    2017         bindings/js/JSNavigatorCustom.cpp
    20182004        dom/LocalMediaStream.cpp
    20192005        dom/MediaStream.cpp
     
    20932079        ${THIRDPARTY_DIR}/ANGLE/src/compiler/VariableInfo.cpp
    20942080
    2095         bindings/js/JSWebGLRenderingContextCustom.cpp
    2096 
    20972081        html/canvas/WebGLBuffer.cpp
    20982082        html/canvas/WebGLContextAttributes.cpp
  • trunk/Source/WebCore/ChangeLog

    r91739 r91742  
     12011-07-25  Ryuan Choi  <ryuan.choi@samsung.com>
     2
     3        [CMAKE] Split JSC related files from WebCore/CMakeLists.txt
     4        https://bugs.webkit.org/show_bug.cgi?id=61350
     5
     6        Reviewed by Daniel Bates.
     7
     8        No new tests, just moving jsc related files from CMakeLists.txt to UseJSC.cmake.
     9
     10        * CMakeLists.txt:
     11        * UseJSC.cmake:
     12
    1132011-07-25  Dan Bernstein  <mitz@apple.com>
    214
  • trunk/Source/WebCore/UseJSC.cmake

    r90248 r91742  
    99
    1010LIST(APPEND WebCore_SOURCES
     11    bindings/js/CallbackFunction.cpp
    1112    bindings/js/DOMObjectHashTableMap.cpp
    1213    bindings/js/DOMWrapperWorld.cpp
     
    163164)
    164165
    165 
    166166IF (ENABLE_BLOB)
    167167    LIST(APPEND WebCore_SOURCES
     
    212212ENDIF ()
    213213
     214
     215IF (ENABLE_NOTIFICATIONS)
     216    LIST(APPEND WebCore_SOURCES
     217        bindings/js/JSDesktopNotificationsCustom.cpp
     218    )
     219ENDIF ()
     220
     221if (ENABLE_FILE_SYSTEM)
     222    LIST(APPEND WebCore_SOURCES
     223        bindings/js/JSDirectoryEntryCustom.cpp
     224        bindings/js/JSDirectoryEntrySyncCustom.cpp
     225        bindings/js/JSEntryCustom.cpp
     226        bindings/js/JSEntrySyncCustom.cpp
     227    )
     228ENDIF ()
     229
     230IF (ENABLE_SVG)
     231    LIST(APPEND WebCore_SOURCES
     232        bindings/js/JSSVGElementInstanceCustom.cpp
     233        bindings/js/JSSVGLengthCustom.cpp
     234        bindings/js/JSSVGPathSegCustom.cpp
     235    )
     236ENDIF ()
     237
     238IF (ENABLE_VIDEO)
     239    LIST(APPEND WebCore_SOURCES
     240        bindings/js/JSAudioConstructor.cpp
     241    )
     242ENDIF ()
     243
     244IF (ENABLE_MEDIA_STREAM)
     245    LIST(APPEND WebCore_SOURCES
     246        bindings/js/JSNavigatorCustom.cpp
     247    )
     248ENDIF ()
     249
     250IF (ENABLE_WEBGL)
     251    LIST(APPEND WebCore_SOURCES
     252        bindings/js/JSWebGLRenderingContextCustom.cpp
     253    )
     254ENDIF ()
    214255
    215256LIST(APPEND SCRIPTS_BINDINGS
Note: See TracChangeset for help on using the changeset viewer.