Changeset 202851 in webkit


Ignore:
Timestamp:
Jul 5, 2016 11:52:25 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[GStreamer] Do not build MediaPlayerPrivateGStreamerOwr when VIDEO is disabled
https://bugs.webkit.org/show_bug.cgi?id=159425

Patch by Olivier Blin <Olivier Blin> on 2016-07-05
Reviewed by Philippe Normand.

MediaPlayer backends are useful and can be built only when VIDEO is enabled.

No new tests, behavior is unchanged.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r202848 r202851  
     12016-07-05  Olivier Blin  <olivier.blin@softathome.com>
     2
     3        [GStreamer] Do not build MediaPlayerPrivateGStreamerOwr when VIDEO is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=159425
     5
     6        Reviewed by Philippe Normand.
     7
     8        MediaPlayer backends are useful and can be built only when VIDEO is enabled.
     9
     10        No new tests, behavior is unchanged.
     11
     12        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp:
     13        * platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.h:
     14
    1152016-07-05  Per Arne Vollan  <pvollan@apple.com>
    216
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp

    r197863 r202851  
    2323#include "MediaPlayerPrivateGStreamerOwr.h"
    2424
    25 #if ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
     25#if ENABLE(VIDEO) && ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
    2626
    2727#include "GStreamerUtilities.h"
     
    337337} // namespace WebCore
    338338
    339 #endif // ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
     339#endif // ENABLE(VIDEO) && ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
  • trunk/Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.h

    r197863 r202851  
    2121#define MediaPlayerPrivateGStreamerOwr_h
    2222
    23 #if ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
     23#if ENABLE(VIDEO) && ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
    2424
    2525#include "MediaPlayerPrivateGStreamerBase.h"
     
    110110} // namespace WebCore
    111111
    112 #endif // ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
     112#endif // ENABLE(VIDEO) && ENABLE(MEDIA_STREAM) && USE(GSTREAMER) && USE(OPENWEBRTC)
    113113
    114114#endif // MediaPlayerPrivateGStreamerOwr_h
Note: See TracChangeset for help on using the changeset viewer.