Changeset 74916 in webkit


Ignore:
Timestamp:
Jan 3, 2011 11:37:39 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-01-03 Benjamin C Meyer <bmeyer@rim.com>

Reviewed by Daniel Bates.

In the cmake build system move logic related to ENABLE_NOTIFICATIONS into its own block.
https://bugs.webkit.org/show_bug.cgi?id=51827

  • CMakeLists.txt:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/CMakeLists.txt

    r74871 r74916  
    312312
    313313    loader/appcache/DOMApplicationCache.idl
    314 
    315     notifications/Notification.idl
    316     notifications/NotificationCenter.idl
    317314
    318315    page/BarInfo.idl
     
    633630    bindings/js/JSDebugWrapperSet.cpp
    634631    bindings/js/JSDedicatedWorkerContextCustom.cpp
    635     bindings/js/JSDesktopNotificationsCustom.cpp
    636632    bindings/js/JSDeviceMotionEventCustom.cpp
    637633    bindings/js/JSDeviceOrientationEventCustom.cpp
     
    17161712        plugins/PluginPackageNone.cpp
    17171713        plugins/PluginViewNone.cpp
     1714    )
     1715ENDIF ()
     1716
     1717IF (ENABLE_NOTIFICATIONS)
     1718    LIST(APPEND WebCore_SOURCES
     1719        bindings/js/JSDesktopNotificationsCustom.cpp
     1720    )
     1721    LIST(APPEND WebCore_IDL_FILES
     1722        notifications/Notification.idl
     1723        notifications/NotificationCenter.idl
    17181724    )
    17191725ENDIF ()
  • trunk/WebCore/ChangeLog

    r74915 r74916  
     12011-01-03  Benjamin C Meyer  <bmeyer@rim.com>
     2
     3        Reviewed by Daniel Bates.
     4
     5        In the cmake build system move logic related to ENABLE_NOTIFICATIONS into its own block.
     6        https://bugs.webkit.org/show_bug.cgi?id=51827
     7
     8        * CMakeLists.txt:
     9
    1102011-01-03  Dan Bernstein  <mitz@apple.com>
    211
Note: See TracChangeset for help on using the changeset viewer.