Skip to content

Commit 3a6f818

Browse files
cadubentzenphiln
authored andcommitted
[GStreamer] Do not link transcoder libraries with USE_GSTREAMER_FULL
https://bugs.webkit.org/show_bug.cgi?id=279114 Reviewed by Philippe Normand. All gstreamer-related libraries are linked in via the single gstreamer-full library when using USE_GSTREAMER_FULL. The `NOT USE_GSTREAMER_FULL` check is done for the other gstreamer libraries but was missing for transcoder libraries. * Source/WebCore/platform/GStreamer.cmake: Canonical link: https://commits.webkit.org/283147@main
1 parent 04457e8 commit 3a6f818

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Source/WebCore/platform/GStreamer.cmake

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,11 @@ if (ENABLE_VIDEO OR ENABLE_WEB_AUDIO)
6363
endif ()
6464

6565
if (USE_GSTREAMER_TRANSCODER)
66-
list(APPEND WebCore_LIBRARIES
67-
${GSTREAMER_TRANSCODER_LIBRARIES}
68-
)
66+
if (NOT USE_GSTREAMER_FULL)
67+
list(APPEND WebCore_LIBRARIES
68+
${GSTREAMER_TRANSCODER_LIBRARIES}
69+
)
70+
endif ()
6971
list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
7072
${GSTREAMER_TRANSCODER_INCLUDE_DIRS}
7173
)

0 commit comments

Comments
 (0)