Changeset 182675 in webkit


Ignore:
Timestamp:
Apr 12, 2015 5:54:13 PM (9 years ago)
Author:
Gyuyoung Kim
Message:

[EFL] Enable Media Source
https://bugs.webkit.org/show_bug.cgi?id=143635

Reviewed by Csaba Osztrogonác.

.:

  • Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.

Tools:

  • Scripts/webkitperl/FeatureList.pm: Enable media source on efl port.

LayoutTests:

  • platform/efl/TestExpectations: Update failing tests.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r182664 r182675  
     12015-04-12  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        [EFL] Enable Media Source
     4        https://bugs.webkit.org/show_bug.cgi?id=143635
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * Source/cmake/OptionsEfl.cmake: Add ENABLE_MEDIA_SOURCE switch.
     9
    1102015-04-11  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/LayoutTests/ChangeLog

    r182674 r182675  
     12015-04-12  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        [EFL] Enable Media Source
     4        https://bugs.webkit.org/show_bug.cgi?id=143635
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * platform/efl/TestExpectations: Update failing tests.
     9
    1102015-04-12  Sungmann Cho  <sungmann.cho@navercorp.com>
    211
  • trunk/LayoutTests/platform/efl/TestExpectations

    r182657 r182675  
    11021102Bug(EFL) fast/images/webp-color-profile-lossy.html [ Skip ]
    11031103
    1104 # Requires MEDIA_SOURCE support.
    1105 webkit.org/b/95296 http/tests/media/media-source [ Skip ]
    1106 webkit.org/b/95296 media/media-source [ Skip ]
    1107 webkit.org/b/95296 fast/history/page-cache-media-source-opened.html [ Skip ]
    1108 webkit.org/b/95296 fast/history/page-cache-media-source-closed.html [ Skip ]
    1109 webkit.org/b/95296 fast/history/page-cache-media-source-closed-2.html [ Skip ]
    1110 webkit.org/b/95296 fast/history/page-cache-removed-source-buffer.html [ Skip ]
     1104# Though MEDIA_SOURCE is enabled, below tests are still failing.
     1105webkit.org/b/134974 http/tests/media/media-source [ Skip ]
     1106webkit.org/b/134974 media/media-source/media-source-append-failed.html [ Timeout ]
     1107webkit.org/b/134974 media/media-source/media-source-seek-complete.html [ Timeout ]
     1108webkit.org/b/134974 media/media-source/media-source-stalled-holds-sleep-assertion.html [ Timeout ]
     1109webkit.org/b/134974 media/track/track-cues-pause-on-exit.html [ Timeout ]
     1110webkit.org/b/134974 media/media-source/media-source-duplicate-seeked.html [ Failure ]
     1111webkit.org/b/134974 media/media-source/media-source-play.html [ Failure ]
     1112webkit.org/b/134974 media/media-source/media-source-append-buffer-with-append-window.html [ Failure Pass ]
    11111113
    11121114# Requires ENCRYPTED_MEDIA support.
  • trunk/Source/cmake/OptionsEfl.cmake

    r181892 r182675  
    9595WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_CAPTURE ON)
    9696WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_CONTROLS_SCRIPT ON)
     97WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_SOURCE ON)
    9798WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEMORY_SAMPLER ON)
    9899WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MHTML ON)
  • trunk/Tools/ChangeLog

    r182670 r182675  
     12015-04-12  Gyuyoung Kim  <gyuyoung.kim@webkit.org>
     2
     3        [EFL] Enable Media Source
     4        https://bugs.webkit.org/show_bug.cgi?id=143635
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * Scripts/webkitperl/FeatureList.pm: Enable media source on efl port.
     9
    1102015-04-12  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r181618 r182675  
    297297
    298298    { option => "media-source", desc => "Toggle Media Source support",
    299       define => "ENABLE_MEDIA_SOURCE", default => isGtk(), value => \$mediaSourceSupport },
     299      define => "ENABLE_MEDIA_SOURCE", default => (isGtk() || isEfl()), value => \$mediaSourceSupport },
    300300
    301301    { option => "media-statistics", desc => "Toggle Media Statistics support",
Note: See TracChangeset for help on using the changeset viewer.