Changeset 268725 in webkit


Ignore:
Timestamp:
Oct 20, 2020 4:53:12 AM (4 years ago)
Author:
Adrian Perez de Castro
Message:

[GTK] Implement HTML5 Gamepad API
https://bugs.webkit.org/show_bug.cgi?id=133847

Reviewed by Michael Catanzaro.

Enable the gamepad support by default for the GTK port. The option is marked PUBLIC
because libmanette is not available in the current Debian "old stable" (Buster), which
we need to support until September 2021.

  • Source/cmake/OptionsGTK.cmake: Set ENABLE_GAMEPAD to PUBLIC and ON by default.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r268708 r268725  
     12020-10-20  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [GTK] Implement HTML5 Gamepad API
     4        https://bugs.webkit.org/show_bug.cgi?id=133847
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Enable the gamepad support by default for the GTK port. The option is marked PUBLIC
     9        because libmanette is not available in the current Debian "old stable" (Buster), which
     10        we need to support until September 2021.
     11
     12        * Source/cmake/OptionsGTK.cmake: Set ENABLE_GAMEPAD to PUBLIC and ON by default.
     13
    1142020-10-19  Lauro Moura  <lmoura@igalia.com>
    215
  • trunk/Source/cmake/OptionsGTK.cmake

    r268453 r268725  
    150150WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_ASYNC_SCROLLING PRIVATE ON)
    151151WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DRAG_SUPPORT PUBLIC ON)
     152WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD PUBLIC ON)
    152153WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_SPELLCHECK PUBLIC ON)
    153154WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TOUCH_EVENTS PUBLIC ON)
     
    170171WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FILTERS_LEVEL_2 PRIVATE ON)
    171172WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTPDIR PRIVATE OFF)
    172 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GAMEPAD PRIVATE ${ENABLE_EXPERIMENTAL_FEATURES})
    173173WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_GPU_PROCESS PRIVATE ${ENABLE_EXPERIMENTAL_FEATURES})
    174174WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_INPUT_TYPE_COLOR PRIVATE ON)
Note: See TracChangeset for help on using the changeset viewer.