Changeset 245676 in webkit


Ignore:
Timestamp:
May 23, 2019 12:28:24 AM (5 years ago)
Author:
Adrian Perez de Castro
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.
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r245673 r245676  
     12019-05-23  Adrian Perez de Castro  <aperez@igalia.com>
     2
     3        [WPE] Build fails with ENABLE_VIDEO=OFF and ENABLE_WEB_AUDIO=OFF
     4        https://bugs.webkit.org/show_bug.cgi?id=198125
     5
     6        Reviewed by Philippe Normand.
     7
     8        * UIProcess/glib/WebProcessPoolGLib.cpp: Guard the inclusion of GStreamerCommon.h with USE(GSTREAMER).
     9        * WebProcess/glib/WebProcessGLib.cpp: Ditto.
     10
    1112019-05-22  Antoine Quint  <graouts@apple.com>
    212
  • trunk/Source/WebKit/UIProcess/glib/WebProcessPoolGLib.cpp

    r243490 r245676  
    3232#include "WebProcessCreationParameters.h"
    3333#include <JavaScriptCore/RemoteInspectorServer.h>
     34
     35#if USE(GSTREAMER)
    3436#include <WebCore/GStreamerCommon.h>
     37#endif
     38
    3539#include <wtf/FileSystem.h>
    3640#include <wtf/glib/GUniquePtr.h>
  • trunk/Source/WebKit/WebProcess/glib/WebProcessGLib.cpp

    r243384 r245676  
    2929
    3030#include "WebProcessCreationParameters.h"
     31
     32#if USE(GSTREAMER)
    3133#include <WebCore/GStreamerCommon.h>
     34#endif
     35
    3236#include <WebCore/MemoryCache.h>
    3337
Note: See TracChangeset for help on using the changeset viewer.