2019-04-26 12:39:35 +03:00
|
|
|
common_c_args = [
|
|
|
|
|
'-D_GNU_SOURCE',
|
|
|
|
|
'-DG_LOG_USE_STRUCTURED',
|
|
|
|
|
]
|
|
|
|
|
|
2019-06-26 12:11:38 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-client-permissions',
|
|
|
|
|
[
|
|
|
|
|
'module-client-permissions.c'
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-client-permissions"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-03-16 15:11:55 -04:00
|
|
|
reserve_device_interface_src = gnome.gdbus_codegen('reserve-device-interface',
|
2020-05-25 12:11:16 -04:00
|
|
|
sources: 'module-device-activation/org.freedesktop.ReserveDevice1.xml',
|
2020-03-16 15:11:55 -04:00
|
|
|
interface_prefix : 'org.freedesktop.ReserveDevice1.',
|
2020-05-22 12:05:15 -04:00
|
|
|
namespace : 'Wp'
|
2020-03-16 15:11:55 -04:00
|
|
|
)
|
|
|
|
|
|
2020-07-29 19:27:40 +05:30
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-metadata-settings',
|
|
|
|
|
[
|
|
|
|
|
'module-metadata-settings.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-metadata"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2019-09-12 16:57:37 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-monitor',
|
|
|
|
|
[
|
|
|
|
|
'module-monitor.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-monitor"'],
|
2020-03-03 09:06:17 -05:00
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
2020-05-25 12:11:16 -04:00
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-device-activation',
|
|
|
|
|
[
|
|
|
|
|
'module-device-activation.c',
|
|
|
|
|
'module-device-activation/reserve-node.c',
|
|
|
|
|
'module-device-activation/reserve-device.c',
|
|
|
|
|
'module-device-activation/dbus-device-reservation.c',
|
|
|
|
|
reserve_device_interface_src,
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-device-activation"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
2020-03-16 15:11:55 -04:00
|
|
|
dependencies : [wp_dep, pipewire_dep, giounix_dep],
|
2020-03-03 09:06:17 -05:00
|
|
|
)
|
|
|
|
|
|
2020-05-22 13:32:17 -04:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-node-suspension',
|
|
|
|
|
[
|
|
|
|
|
'module-node-suspension.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-node-suspension"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-05-15 15:30:22 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-session-settings',
|
|
|
|
|
[
|
|
|
|
|
'module-session-settings.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-session-settings"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-01-07 13:18:02 -05:00
|
|
|
shared_library(
|
2020-06-02 09:54:06 -04:00
|
|
|
'wireplumber-module-config-static-objects',
|
2020-01-07 13:18:02 -05:00
|
|
|
[
|
2020-06-02 11:04:16 -04:00
|
|
|
'module-config-static-objects/parser-device.c',
|
2020-06-02 09:54:06 -04:00
|
|
|
'module-config-static-objects/parser-node.c',
|
|
|
|
|
'module-config-static-objects/context.c',
|
|
|
|
|
'module-config-static-objects.c',
|
2020-01-07 13:18:02 -05:00
|
|
|
],
|
2020-06-02 09:54:06 -04:00
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-config-static-objects"'],
|
2020-01-07 13:18:02 -05:00
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, wptoml_dep, pipewire_dep],
|
2019-05-17 13:08:45 +03:00
|
|
|
)
|
|
|
|
|
|
2019-07-10 12:41:56 -04:00
|
|
|
shared_library(
|
2019-12-11 14:50:45 -05:00
|
|
|
'wireplumber-module-config-endpoint',
|
2019-07-10 12:41:56 -04:00
|
|
|
[
|
2019-12-11 14:50:45 -05:00
|
|
|
'module-config-endpoint/parser-endpoint.c',
|
|
|
|
|
'module-config-endpoint/parser-streams.c',
|
|
|
|
|
'module-config-endpoint/context.c',
|
|
|
|
|
'module-config-endpoint.c',
|
2019-07-10 12:41:56 -04:00
|
|
|
],
|
2019-12-11 14:50:45 -05:00
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-config-endpoint"'],
|
2019-07-10 12:41:56 -04:00
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
2019-12-11 14:50:45 -05:00
|
|
|
dependencies : [wp_dep, wptoml_dep, pipewire_dep],
|
2019-05-17 13:08:45 +03:00
|
|
|
)
|
2019-12-03 08:49:05 -05:00
|
|
|
|
|
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-config-policy',
|
|
|
|
|
[
|
2020-05-12 09:58:23 -04:00
|
|
|
'module-config-policy/parser-endpoint-link.c',
|
|
|
|
|
'module-config-policy/context.c',
|
2019-12-03 08:49:05 -05:00
|
|
|
'module-config-policy.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-config-policy"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, wptoml_dep, pipewire_dep],
|
|
|
|
|
)
|
2019-12-11 23:45:06 +02:00
|
|
|
|
2020-03-17 23:03:10 +02:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-adapter',
|
|
|
|
|
[
|
|
|
|
|
'module-si-adapter.c',
|
2020-05-11 12:57:55 -04:00
|
|
|
'module-si-adapter/algorithms.c',
|
2020-03-17 23:03:10 +02:00
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-adapter"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
2020-04-10 16:17:25 +03:00
|
|
|
|
2020-04-21 10:40:56 -04:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-convert',
|
|
|
|
|
[
|
|
|
|
|
'module-si-convert.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-convert"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-04-22 13:53:14 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-simple-node-endpoint',
|
|
|
|
|
[
|
|
|
|
|
'module-si-simple-node-endpoint.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-simple-node-endpoint"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-04-24 11:51:52 -04:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-audio-softdsp-endpoint',
|
|
|
|
|
[
|
|
|
|
|
'module-si-audio-softdsp-endpoint.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-audio-softdsp-endpoint"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-05-19 13:39:25 -04:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-monitor-endpoint',
|
|
|
|
|
[
|
|
|
|
|
'module-si-monitor-endpoint.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-monitor-endpoint"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|
|
|
|
|
|
2020-04-10 16:17:25 +03:00
|
|
|
shared_library(
|
|
|
|
|
'wireplumber-module-si-standard-link',
|
|
|
|
|
[
|
|
|
|
|
'module-si-standard-link.c',
|
|
|
|
|
],
|
|
|
|
|
c_args : [common_c_args, '-DG_LOG_DOMAIN="m-si-standard-link"'],
|
|
|
|
|
install : true,
|
|
|
|
|
install_dir : wireplumber_module_dir,
|
|
|
|
|
dependencies : [wp_dep, pipewire_dep],
|
|
|
|
|
)
|