Changeset 56052 in webkit


Ignore:
Timestamp:
Mar 16, 2010 4:11:51 AM (14 years ago)
Author:
xan@webkit.org
Message:

2010-03-16 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

Add support for Fast Mobile Scrolling in the build system.

  • configure.ac:

WebCore:

2010-03-16 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

Add support for Fast Mobile Scrolling in the build system.

  • GNUmakefile.am:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r56048 r56052  
     12010-03-16  Xan Lopez  <xlopez@igalia.com>
     2
     3        Reviewed by Gustavo Noronha.
     4
     5        Add support for Fast Mobile Scrolling in the build system.
     6
     7        * configure.ac:
     8
    192010-03-16  Simon Hausmann  <simon.hausmann@nokia.com>
    210
  • trunk/WebCore/ChangeLog

    r56051 r56052  
     12010-03-16  Xan Lopez  <xlopez@igalia.com>
     2
     3        Reviewed by Gustavo Noronha.
     4
     5        Add support for Fast Mobile Scrolling in the build system.
     6
     7        * GNUmakefile.am:
     8
    192010-03-11  Yury Semikhatsky <yurys@chromium.org>
    210
  • trunk/WebCore/GNUmakefile.am

    r56051 r56052  
    21452145
    21462146# ---
     2147# Fast Mobile Scrolling
     2148# ---
     2149if ENABLE_FAST_MOBILE_SCROLLING
     2150FEATURE_DEFINES += ENABLE_FAST_MOBILE_SCROLLING=1
     2151
     2152webcore_cppflags += \
     2153        -DENABLE_FAST_MOBILE_SCROLLING=1
     2154
     2155endif # END ENABLE_FAST_MOBILE_SCROLLING
     2156
     2157# ---
    21472158# Freetype font backend
    21482159# ---
  • trunk/configure.ac

    r55743 r56052  
    562562AC_MSG_RESULT([$enable_blob_slice])
    563563
     564# check whether to enable Fast Mobile Scrolling support
     565AC_MSG_CHECKING([whether to enable Fast Mobile Scrolling])
     566AC_ARG_ENABLE(fast_mobile_scrolling,
     567              AC_HELP_STRING([--enable-fast-mobile-scrolling],
     568                             [enable support for Fast Mobile Scrolling [default=no]]),
     569              [],[enable_fast_mobile_scrolling="no"])
     570AC_MSG_RESULT([$enable_fast_mobile_scrolling])
     571
    564572# check whether to enable code coverage
    565573AC_MSG_CHECKING([whether to enable code coverage support])
     
    793801AM_CONDITIONAL([ENABLE_DATALIST],[test "$enable_datalist" = "yes"])
    794802AM_CONDITIONAL([ENABLE_EVENTSOURCE],[test "$enable_eventsource" = "yes"])
     803AM_CONDITIONAL([ENABLE_FAST_MOBILE_SCROLLING],[test "$enable_fast_mobile_scrolling" = "yes"])
    795804AM_CONDITIONAL([ENABLE_ICONDATABASE],[test "$enable_icon_database" = "yes"])
    796805AM_CONDITIONAL([ENABLE_INDEXED_DATABASE],[test "$enable_indexed_database" = "yes"])
     
    849858 3D Transforms                                            : $enable_3D_transforms
    850859 Blob.slice support                                       : $enable_blob_slice
     860 Fast Mobile Scrolling                                    : $enable_fast_mobile_scrolling
    851861 JIT compilation                                          : $enable_jit
    852862 Filters support                                          : $enable_filters
Note: See TracChangeset for help on using the changeset viewer.