Changeset 74217 in webkit


Ignore:
Timestamp:
Dec 16, 2010 3:17:23 PM (13 years ago)
Author:
dbates@webkit.org
Message:

2010-12-16 Daniel Bates <dbates@rim.com>

Reviewed by Antonio Gomes.

[Qt] Only include ScrollAnimatorWin.h and compile ScrollAnimatorWin.cpp
on Windows if ENABLE_SMOOTH_SCROLLING=1
https://bugs.webkit.org/show_bug.cgi?id=51215

Conditionally include the files ScrollAnimatorWin.h and ScrollAnimatorWin.cpp when building
the Qt Windows with smooth scrolling enabled.

No change in functionality since these files are guarded by ENABLE(SMOOTH_SCROLLING).

  • WebCore.pro:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r74214 r74217  
     12010-12-16  Daniel Bates  <dbates@rim.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [Qt] Only include ScrollAnimatorWin.h and compile ScrollAnimatorWin.cpp
     6        on Windows if ENABLE_SMOOTH_SCROLLING=1
     7        https://bugs.webkit.org/show_bug.cgi?id=51215
     8
     9        Conditionally include the files ScrollAnimatorWin.h and ScrollAnimatorWin.cpp when building
     10        the Qt Windows with smooth scrolling enabled.
     11
     12        No change in functionality since these files are guarded by ENABLE(SMOOTH_SCROLLING).
     13
     14        * WebCore.pro:
     15
    1162010-12-16  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/WebCore/WebCore.pro

    r74115 r74217  
    27782778}
    27792779
    2780 
     2780contains(DEFINES, ENABLE_SMOOTH_SCROLLING=1) {
    27812781    win32-*|wince* {
    27822782        HEADERS += platform/ScrollAnimatorWin.h
    2783         SOURCES += platform/ScrollAnimatorWin.cpp \
    2784                    platform/win/SystemTimeWin.cpp \
    2785                    platform/graphics/win/TransformationMatrixWin.cpp
    2786     }
     2783        SOURCES += platform/ScrollAnimatorWin.cpp
     2784    }
     2785}
     2786
     2787win32-*|wince* {
     2788    SOURCES += \
     2789        platform/win/SystemTimeWin.cpp \
     2790        platform/graphics/win/TransformationMatrixWin.cpp
     2791}
    27872792
    27882793    mac {
Note: See TracChangeset for help on using the changeset viewer.