Title: [158194] trunk
Revision
158194
Author
ph...@webkit.org
Date
2013-10-29 09:32:44 -0700 (Tue, 29 Oct 2013)

Log Message

[GTK] enable media-stream in build-webkit
https://bugs.webkit.org/show_bug.cgi?id=123144

Reviewed by Martin Robinson.

Source/WebCore:

* GNUmakefile.list.am: Add new MediaStream files to the GTK port build.

Tools:

* Scripts/webkitperl/FeatureList.pm: Enable media-stream build
for the GTK+ port.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158193 => 158194)


--- trunk/Source/WebCore/ChangeLog	2013-10-29 16:01:17 UTC (rev 158193)
+++ trunk/Source/WebCore/ChangeLog	2013-10-29 16:32:44 UTC (rev 158194)
@@ -1,3 +1,12 @@
+2013-10-29  Philippe Normand  <pnorm...@igalia.com>
+
+        [GTK] enable media-stream in build-webkit
+        https://bugs.webkit.org/show_bug.cgi?id=123144
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.list.am: Add new MediaStream files to the GTK port build.
+
 2013-10-28  Chris Fleizach  <cfleiz...@apple.com>
 
         AX: Webkit does not expose AXRequired on input type=file

Modified: trunk/Source/WebCore/GNUmakefile.list.am (158193 => 158194)


--- trunk/Source/WebCore/GNUmakefile.list.am	2013-10-29 16:01:17 UTC (rev 158193)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2013-10-29 16:32:44 UTC (rev 158194)
@@ -5395,6 +5395,8 @@
 	Source/WebCore/platform/mediastream/MediaStreamSource.cpp \
 	Source/WebCore/platform/mediastream/MediaStreamSource.h \
 	Source/WebCore/platform/mediastream/MediaStreamSourceCapabilities.h \
+	Source/WebCore/platform/mediastream/MediaStreamTrackPrivate.cpp \
+	Source/WebCore/platform/mediastream/MediaStreamTrackPrivate.h \
 	Source/WebCore/platform/mediastream/MediaStreamTrackSourcesRequestClient.h \
 	Source/WebCore/platform/mediastream/RTCConfiguration.h \
 	Source/WebCore/platform/mediastream/RTCDTMFSenderHandler.h \
@@ -5421,6 +5423,12 @@
 	Source/WebCore/platform/mock/GeolocationClientMock.h \
 	Source/WebCore/platform/mock/MockMediaStreamCenter.cpp \
 	Source/WebCore/platform/mock/MockMediaStreamCenter.h \
+	Source/WebCore/platform/mock/RTCDataChannelHandlerMock.cpp \
+	Source/WebCore/platform/mock/RTCDataChannelHandlerMock.h \
+	Source/WebCore/platform/mock/RTCNotifiersMock.cpp \
+	Source/WebCore/platform/mock/RTCNotifiersMock.h \
+	Source/WebCore/platform/mock/RTCPeerConnectionHandlerMock.cpp \
+	Source/WebCore/platform/mock/RTCPeerConnectionHandlerMock.h \
 	Source/WebCore/platform/mock/ScrollbarThemeMock.cpp \
 	Source/WebCore/platform/mock/ScrollbarThemeMock.h \
 	Source/WebCore/platform/network/BlobData.cpp \

Modified: trunk/Tools/ChangeLog (158193 => 158194)


--- trunk/Tools/ChangeLog	2013-10-29 16:01:17 UTC (rev 158193)
+++ trunk/Tools/ChangeLog	2013-10-29 16:32:44 UTC (rev 158194)
@@ -1,3 +1,13 @@
+2013-10-29  Philippe Normand  <pnorm...@igalia.com>
+
+        [GTK] enable media-stream in build-webkit
+        https://bugs.webkit.org/show_bug.cgi?id=123144
+
+        Reviewed by Martin Robinson.
+
+        * Scripts/webkitperl/FeatureList.pm: Enable media-stream build
+        for the GTK+ port.
+
 2013-10-29  Gyuyoung Kim  <gyuyoung....@samsung.com>
 
         EFL 32 bit buildbot doesn't work on dashboard

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (158193 => 158194)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-10-29 16:01:17 UTC (rev 158193)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-10-29 16:32:44 UTC (rev 158194)
@@ -346,7 +346,7 @@
       define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport },
 
     { option => "media-stream", desc => "Toggle Media Stream support",
-      define => "ENABLE_MEDIA_STREAM", default => isBlackBerry(), value => \$mediaStreamSupport },
+      define => "ENABLE_MEDIA_STREAM", default => (isBlackBerry() || isGtk()), value => \$mediaStreamSupport },
 
     { option => "meter-element", desc => "Toggle Meter Element support",
       define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value => \$meterElementSupport },
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to