Title: [245676] trunk/Source/WebKit
Revision
245676
Author
[email protected]
Date
2019-05-23 00:28:24 -0700 (Thu, 23 May 2019)

Log Message

[WPE] Build fails with ENABLE_VIDEO=OFF and ENABLE_WEB_AUDIO=OFF
https://bugs.webkit.org/show_bug.cgi?id=198125

Reviewed by Philippe Normand.

* UIProcess/glib/WebProcessPoolGLib.cpp: Guard the inclusion of GStreamerCommon.h with USE(GSTREAMER).
* WebProcess/glib/WebProcessGLib.cpp: Ditto.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (245675 => 245676)


--- trunk/Source/WebKit/ChangeLog	2019-05-23 07:06:20 UTC (rev 245675)
+++ trunk/Source/WebKit/ChangeLog	2019-05-23 07:28:24 UTC (rev 245676)
@@ -1,3 +1,13 @@
+2019-05-23  Adrian Perez de Castro  <[email protected]>
+
+        [WPE] Build fails with ENABLE_VIDEO=OFF and ENABLE_WEB_AUDIO=OFF
+        https://bugs.webkit.org/show_bug.cgi?id=198125
+
+        Reviewed by Philippe Normand.
+
+        * UIProcess/glib/WebProcessPoolGLib.cpp: Guard the inclusion of GStreamerCommon.h with USE(GSTREAMER).
+        * WebProcess/glib/WebProcessGLib.cpp: Ditto.
+
 2019-05-22  Antoine Quint  <[email protected]>
 
         [tvOS] Build broken by r245639

Modified: trunk/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp (245675 => 245676)


--- trunk/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp	2019-05-23 07:06:20 UTC (rev 245675)
+++ trunk/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp	2019-05-23 07:28:24 UTC (rev 245676)
@@ -31,7 +31,11 @@
 #include "WebMemoryPressureHandler.h"
 #include "WebProcessCreationParameters.h"
 #include <_javascript_Core/RemoteInspectorServer.h>
+
+#if USE(GSTREAMER)
 #include <WebCore/GStreamerCommon.h>
+#endif
+
 #include <wtf/FileSystem.h>
 #include <wtf/glib/GUniquePtr.h>
 

Modified: trunk/Source/WebKit/WebProcess/glib/WebProcessGLib.cpp (245675 => 245676)


--- trunk/Source/WebKit/WebProcess/glib/WebProcessGLib.cpp	2019-05-23 07:06:20 UTC (rev 245675)
+++ trunk/Source/WebKit/WebProcess/glib/WebProcessGLib.cpp	2019-05-23 07:28:24 UTC (rev 245676)
@@ -28,7 +28,11 @@
 #include "WebProcess.h"
 
 #include "WebProcessCreationParameters.h"
+
+#if USE(GSTREAMER)
 #include <WebCore/GStreamerCommon.h>
+#endif
+
 #include <WebCore/MemoryCache.h>
 
 #if PLATFORM(WAYLAND)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to