Changeset 120281 in webkit


Ignore:
Timestamp:
Jun 13, 2012, 10:59:14 PM (13 years ago)
Author:
efidler@rim.com
Message:

Fix CMake build with SMOOTH_SCROLLING enabled
https://bugs.webkit.org/show_bug.cgi?id=89032

Reviewed by Antonio Gomes.

SMOOTH_SCROLLING pulls in ScrollAnimatorNone.cpp, which has
dependencies on platform/ActivePlatformGestureAnimation.cpp and
platform/TouchpadFlingPlatformGestureCurve.cpp

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

Legend:

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

    r120188 r120281  
    22002200IF (ENABLE_SMOOTH_SCROLLING)
    22012201    LIST(APPEND WebCore_SOURCES
     2202        platform/ActivePlatformGestureAnimation.cpp
    22022203        platform/ScrollAnimatorNone.cpp
     2204        platform/TouchpadFlingPlatformGestureCurve.cpp
    22032205    )
    22042206ENDIF ()
  • trunk/Source/WebCore/ChangeLog

    r120280 r120281  
     12012-06-13  Eli Fidler  <efidler@rim.com>
     2
     3        Fix CMake build with SMOOTH_SCROLLING enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=89032
     5
     6        Reviewed by Antonio Gomes.
     7
     8        SMOOTH_SCROLLING pulls in ScrollAnimatorNone.cpp, which has
     9        dependencies on platform/ActivePlatformGestureAnimation.cpp and
     10        platform/TouchpadFlingPlatformGestureCurve.cpp
     11
     12        * CMakeLists.txt:
     13
    1142012-06-13  Mihai Balan  <mibalan@adobe.com>
    215
Note: See TracChangeset for help on using the changeset viewer.