Changeset 172882 in webkit


Ignore:
Timestamp:
Aug 22, 2014 11:29:38 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

.:
[EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
https://bugs.webkit.org/show_bug.cgi?id=136110

Patch by KwangHyuk Kim <hyuki.kim@samsung.com> on 2014-08-22
Reviewed by Gyuyoung Kim.

Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.

  • Source/cmake/OptionsEfl.cmake:

Source/WebCore:
[EFL] Fix build break caused by ENABLE_GAMEPAD_DEPRECATED.
https://bugs.webkit.org/show_bug.cgi?id=136110

Patch by KwangHyuk Kim <hyuki.kim@samsung.com> on 2014-08-22
Reviewed by Gyuyoung Kim.

WebCore_INCLUDE_DIRECTORY for gamepad was removed from WK2 Efl in order to fix build break when ENABLE_GAMEPAD_DEPRECATED is on.

No new tests because no functional changes.

  • PlatformEfl.cmake:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r172857 r172882  
     12014-08-22  KwangHyuk Kim  <hyuki.kim@samsung.com>
     2
     3        [EFL] Turn on ENABLE_GAMEPAD_DEPRECATED option.
     4        https://bugs.webkit.org/show_bug.cgi?id=136110
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Turn on ENABLE_GAMEPAD_DEPRECATED option for the WK2 Efl.
     9
     10        * Source/cmake/OptionsEfl.cmake:
     11
    1122014-08-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    213
  • trunk/Source/WebCore/ChangeLog

    r172880 r172882  
     12014-08-22  KwangHyuk Kim  <hyuki.kim@samsung.com>
     2
     3        [EFL] Fix build break caused by ENABLE_GAMEPAD_DEPRECATED.
     4        https://bugs.webkit.org/show_bug.cgi?id=136110
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        WebCore_INCLUDE_DIRECTORY for gamepad was removed from WK2 Efl in order to fix build break when ENABLE_GAMEPAD_DEPRECATED is on.
     9
     10        No new tests because no functional changes.
     11
     12        * PlatformEfl.cmake:
     13
    1142014-08-22  Benjamin Poulain  <benjamin@webkit.org>
    215
  • trunk/Source/WebCore/PlatformEfl.cmake

    r172346 r172882  
    244244endif ()
    245245
     246if (ENABLE_GAMEPAD_DEPRECATED)
     247    # FIXME: GAMEPAD_DEPRECATED is legacy implementation. Need to be removed.
     248    list(REMOVE_ITEM WebCore_INCLUDE_DIRECTORIES
     249        "${WEBCORE_DIR}/Modules/gamepad"
     250    )
     251endif ()
     252
    246253list(APPEND WebCore_USER_AGENT_STYLE_SHEETS
    247254    ${WEBCORE_DIR}/Modules/mediacontrols/mediaControlsApple.css
  • trunk/Source/cmake/OptionsEfl.cmake

    r172857 r172882  
    7373WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FULLSCREEN_API ON)
    7474WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD OFF)
    75 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD_DEPRECATED OFF)
     75WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD_DEPRECATED ON)
    7676WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GEOLOCATION ON)
    7777WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INDEXED_DATABASE OFF)
Note: See TracChangeset for help on using the changeset viewer.