gstreamer-rs/gstreamer-validate/Gir.toml
Thibault Saunier 8eae37c525 validate: Implement action types registration support
This is implemented mostly manually because the API is a bit weird
and we need to do some extra work to make it work properly.
Also basing it on a Builder makes it much nicer to user.

This commit also includes required new types either generated with `gir`
or manually implemented when required.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1227>
2023-04-04 11:50:49 -04:00

59 lines
1.2 KiB
TOML

[options]
girs_directories = ["../gir-files", "../gst-gir-files"]
library = "GstValidate"
version = "1.0"
min_cfg_version = "1.22"
work_mode = "normal"
concurrency = "send+sync"
generate_safety_asserts = true
single_version_file = true
generate_display_trait = false
trust_return_value_nullability = true
external_libraries = [
"GLib",
"GObject",
"Gst",
]
generate = [
"GstValidate.Reporter",
"GstValidate.BinMonitor",
"GstValidate.Monitor",
"GstValidate.ElementMonitor",
"GstValidate.PadMonitor",
"GstValidate.PipelineMonitor",
"GstValidate.Report",
"GstValidate.Runner",
"GstValidate.Issue",
"GstValidate.ReportingDetails",
"GstValidate.ReportLevel",
"GstValidate.IssueFlags",
"GstValidate.IssueId",
"GstValidate.ActionTypeFlags",
"GstValidate.ActionType",
]
manual = [
"GLib.Bytes",
"GLib.Error",
"GObject.Object",
"Gst.Caps",
"Gst.Structure",
"Gst.Object",
"Gst.Bin",
"Gst.Element",
"Gst.Pipeline",
"Gst.State",
"Gst.Pad",
"Gst.Format",
"Gst.SeekFlags",
"Gst.SeekType",
"GstValidate.Action",
]
[[object]]
name = "GstValidate.Scenario"
status = "generate"
concurrency = "none"