Title: [197754] trunk
Revision
197754
Author
[email protected]
Date
2016-03-08 04:07:30 -0800 (Tue, 08 Mar 2016)

Log Message

Unreviewed EFL build fix after r197752.

Tools:

* Scripts/webkitperl/FeatureList.pm: Avoid MEDIA_STREAM
compilation by default until EFL bumps gstreamer to 1.6.

LayoutTests:

* platform/efl/TestExpectations: Avoid running the mediastream
tests until the support is implemented and compiled by default.

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (197753 => 197754)


--- trunk/LayoutTests/ChangeLog	2016-03-08 10:58:20 UTC (rev 197753)
+++ trunk/LayoutTests/ChangeLog	2016-03-08 12:07:30 UTC (rev 197754)
@@ -1,5 +1,12 @@
 2016-03-08  Alejandro G. Castro  <[email protected]>
 
+        Unreviewed EFL build fix after r197752.
+
+        * platform/efl/TestExpectations: Avoid running the mediastream
+        tests until the support is implemented and compiled by default.
+
+2016-03-08  Alejandro G. Castro  <[email protected]>
+
         [GTK] [EFL] Avoid running mediastream tests by default until we compile by default
         https://bugs.webkit.org/show_bug.cgi?id=153540
 

Modified: trunk/LayoutTests/platform/efl/TestExpectations (197753 => 197754)


--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-08 10:58:20 UTC (rev 197753)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-08 12:07:30 UTC (rev 197754)
@@ -79,6 +79,11 @@
 # Need to implement font feature seeting for EFL port since r188146.
 css3/font-feature-settings-rendering.html [ Skip ]
 
+# Requires MEDIA_STREAM support.
+webkit.org/b/87662 fast/mediastream [ Skip ]
+webkit.org/b/87662 fast/events/constructors/media-stream-event-constructor.html [ Skip ]
+webkit.org/b/87662 http/tests/media/media-stream [ Skip ]
+
 # ----------------------------------------
 # Tests which also fail in other platforms
 # ----------------------------------------
@@ -1692,10 +1697,6 @@
 webkit.org/b/88080 pointer-lock [ Skip ]
 webkit.org/b/88080 http/tests/pointer-lock [ Skip ]
 
-# Requires MEDIA_STREAM support.
-webkit.org/b/87662 fast/mediastream [ Skip ]
-webkit.org/b/87662 fast/events/constructors/media-stream-event-constructor.html [ Skip ]
-
 # Requires INDIE_UI support
 webkit.org/b/111446 indieui [ Skip ]
 

Modified: trunk/Tools/ChangeLog (197753 => 197754)


--- trunk/Tools/ChangeLog	2016-03-08 10:58:20 UTC (rev 197753)
+++ trunk/Tools/ChangeLog	2016-03-08 12:07:30 UTC (rev 197754)
@@ -1,5 +1,12 @@
 2016-03-08  Alejandro G. Castro  <[email protected]>
 
+        Unreviewed EFL build fix after r197752.
+
+        * Scripts/webkitperl/FeatureList.pm: Avoid MEDIA_STREAM
+        compilation by default until EFL bumps gstreamer to 1.6.
+
+2016-03-08  Alejandro G. Castro  <[email protected]>
+
         [GTK] [EFL] Avoid running mediastream tests by default until we compile by default
         https://bugs.webkit.org/show_bug.cgi?id=153540
 

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (197753 => 197754)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2016-03-08 10:58:20 UTC (rev 197753)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2016-03-08 12:07:30 UTC (rev 197754)
@@ -338,7 +338,7 @@
       define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport },
 
     { option => "media-stream", desc => "Toggle Media Stream support",
-      define => "ENABLE_MEDIA_STREAM", default => (isGtk() || isEfl()), value => \$mediaStreamSupport },
+      define => "ENABLE_MEDIA_STREAM", default => (isGtk()), value => \$mediaStreamSupport },
 
     { option => "meter-element", desc => "Toggle Meter Element support",
       define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value => \$meterElementSupport },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to