Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2022-10-23 11:51:02 +0300
committerSebastian Dröge <sebastian@centricular.com>2022-10-23 11:51:02 +0300
commit1929f5872c090985017bf0c691e475bf1acb2e6b (patch)
tree61f8394303b0754f92d171e53b4aaeee67dadf05 /meson.build
parentf058a5e2296d69456dae9a2960af79be7becfaa3 (diff)
Sort members in Cargo.toml and meson.build alphabetically and the same in both files
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build59
1 files changed, 36 insertions, 23 deletions
diff --git a/meson.build b/meson.build
index aa5260c5b..6b653dcef 100644
--- a/meson.build
+++ b/meson.build
@@ -37,41 +37,54 @@ else
endif
# workspace name -> lib name
+# kept in the same order as the `members` list in Cargo.toml
plugins = {
'gst-plugin-audiofx': 'libgstrsaudiofx',
- 'gst-plugin-cdg': 'libgstcdg',
'gst-plugin-claxon': 'libgstclaxon',
- 'gst-plugin-fallbackswitch': 'libgstfallbackswitch',
- 'gst-plugin-ffv1': 'libgstffv1',
- 'gst-plugin-file': 'libgstrsfile',
- 'gst-plugin-flavors': 'libgstrsflv',
- 'gst-plugin-gif': 'libgstgif',
+ # csound has an external dependency, see below
'gst-plugin-lewton': 'libgstlewton',
+ 'gst-plugin-spotify': 'libgstspotify',
+
+ 'gst-plugin-file': 'libgstrsfile',
+ 'gst-plugin-fmp4': 'libgstfmp4',
+ # sodium has an external dependency, see below
+ 'gst-plugin-threadshare': 'libgstthreadshare',
+
+ 'gst-plugin-aws': 'libgstaws',
+ 'gst-plugin-hlssink3': 'libgsthlssink3',
+ 'gst-plugin-ndi': 'libgstndi',
+ 'gst-plugin-onvif': 'libgstrsonvif',
'gst-plugin-raptorq': 'libgstraptorq',
- 'gst-plugin-rav1e': 'libgstrav1e',
'gst-plugin-reqwest': 'libgstreqwest',
- 'gst-plugin-hlssink3': 'libgsthlssink3',
- 'gst-plugin-rspng': 'libgstrspng',
- 'gst-plugin-aws': 'libgstaws',
+ 'gst-plugin-rtpav1': 'libgstrtpav1',
+ 'gst-plugin-webrtchttp': 'libgstwebrtchttp',
+ 'gst-plugin-webrtc': 'libgstrswebrtc',
+
+ 'gst-plugin-textahead': 'libgsttextahead',
+ 'gst-plugin-json': 'libgstrsjson',
+ 'gst-plugin-regex': 'libgstrsregex',
'gst-plugin-textwrap': 'libgstrstextwrap',
- 'gst-plugin-fmp4': 'libgstfmp4',
- 'gst-plugin-threadshare': 'libgstthreadshare',
+
+ 'gst-plugin-fallbackswitch': 'libgstfallbackswitch',
'gst-plugin-togglerecord': 'libgsttogglerecord',
+ 'gst-plugin-tracers': 'libgstrstracers',
+ 'gst-plugin-uriplaylistbin': 'libgsturiplaylistbin',
+
+ 'gst-plugin-cdg': 'libgstcdg',
+ # closedcaption has an external dependency, see below
+ # dav1d has an external dependency, see below
+ 'gst-plugin-ffv1': 'libgstffv1',
+ 'gst-plugin-flavors': 'libgstrsflv',
+ 'gst-plugin-gif': 'libgstgif',
+ # gtk4 has an external dependency, see below
'gst-plugin-hsv': 'libgsthsv',
- 'gst-plugin-json': 'libgstrsjson',
- 'gst-plugin-regex': 'libgstrsregex',
+ 'gst-plugin-rav1e': 'libgstrav1e',
+ 'gst-plugin-rspng': 'libgstrspng',
+ # videofx has an external dependency, see below
+
# FIXME: libwebp-sys2 will build its bundled version on msvc and apple platforms
# https://github.com/qnighy/libwebp-sys2-rs/issues/4
'gst-plugin-webp': 'libgstrswebp',
- 'gst-plugin-uriplaylistbin': 'libgsturiplaylistbin',
- 'gst-plugin-spotify': 'libgstspotify',
- 'gst-plugin-textahead': 'libgsttextahead',
- 'gst-plugin-onvif': 'libgstrsonvif',
- 'gst-plugin-tracers': 'libgstrstracers',
- 'gst-plugin-webrtc': 'libgstrswebrtc',
- 'gst-plugin-webrtchttp': 'libgstwebrtchttp',
- 'gst-plugin-rtpav1': 'libgstrtpav1',
- 'gst-plugin-ndi': 'libgstndi',
}
extra_env = {}