1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
list(APPEND WebCore_INCLUDE_DIRECTORIES
"${WEBCORE_DIR}/platform/mediastream/openwebrtc"
)
if (ENABLE_MEDIA_STREAM)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${OPENWEBRTC_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${OPENWEBRTC_LIBRARIES}
)
list(APPEND WebCore_SOURCES
platform/graphics/gstreamer/MediaPlayerPrivateGStreamerOwr.cpp
platform/mediastream/openwebrtc/OpenWebRTCUtilities.cpp
platform/mediastream/openwebrtc/RealtimeMediaSourceCenterOwr.cpp
)
endif ()
if (ENABLE_VIDEO OR ENABLE_WEB_AUDIO)
list(APPEND WebCore_INCLUDE_DIRECTORIES
"${WEBCORE_DIR}/platform/graphics/gstreamer"
)
list(APPEND WebCore_SOURCES
platform/graphics/gstreamer/AudioTrackPrivateGStreamer.cpp
platform/graphics/gstreamer/GRefPtrGStreamer.cpp
platform/graphics/gstreamer/GStreamerUtilities.cpp
platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp
platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp
platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp
platform/graphics/gstreamer/MediaSourceGStreamer.cpp
platform/graphics/gstreamer/SourceBufferPrivateGStreamer.cpp
platform/graphics/gstreamer/TextCombinerGStreamer.cpp
platform/graphics/gstreamer/TextSinkGStreamer.cpp
platform/graphics/gstreamer/TrackPrivateBaseGStreamer.cpp
platform/graphics/gstreamer/VideoSinkGStreamer.cpp
platform/graphics/gstreamer/VideoTrackPrivateGStreamer.cpp
platform/graphics/gstreamer/WebKitMediaSourceGStreamer.cpp
platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp
)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${GSTREAMER_INCLUDE_DIRS}
${GSTREAMER_BASE_INCLUDE_DIRS}
${GSTREAMER_APP_INCLUDE_DIRS}
${GSTREAMER_PBUTILS_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${GSTREAMER_APP_LIBRARIES}
${GSTREAMER_BASE_LIBRARIES}
${GSTREAMER_LIBRARIES}
${GSTREAMER_PBUTILS_LIBRARIES}
${GSTREAMER_AUDIO_LIBRARIES}
)
# Avoiding a GLib deprecation warning due to GStreamer API using deprecated classes.
set_source_files_properties(platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp PROPERTIES COMPILE_DEFINITIONS "GLIB_DISABLE_DEPRECATION_WARNINGS=1")
endif ()
if (ENABLE_VIDEO)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${GSTREAMER_TAG_INCLUDE_DIRS}
${GSTREAMER_VIDEO_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${GSTREAMER_TAG_LIBRARIES}
${GSTREAMER_VIDEO_LIBRARIES}
)
if (USE_GSTREAMER_MPEGTS)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${GSTREAMER_MPEGTS_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${GSTREAMER_MPEGTS_LIBRARIES}
)
endif ()
if (USE_GSTREAMER_GL)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${GSTREAMER_GL_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${GSTREAMER_GL_LIBRARIES}
)
endif ()
endif ()
if (ENABLE_WEB_AUDIO)
list(APPEND WebCore_INCLUDE_DIRECTORIES
"${WEBCORE_DIR}/platform/audio/gstreamer"
)
list(APPEND WebCore_SOURCES
platform/audio/gstreamer/AudioDestinationGStreamer.cpp
platform/audio/gstreamer/AudioFileReaderGStreamer.cpp
platform/audio/gstreamer/AudioSourceProviderGStreamer.cpp
platform/audio/gstreamer/FFTFrameGStreamer.cpp
platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp
)
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
${GSTREAMER_AUDIO_INCLUDE_DIRS}
${GSTREAMER_FFT_INCLUDE_DIRS}
)
list(APPEND WebCore_LIBRARIES
${GSTREAMER_FFT_LIBRARIES}
)
endif ()
|