mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-04 18:47:37 +00:00
Move provider plugins into a dedicated directory
Since we will introduce another type of plugin for the policy engine we want to have each plugin type in separate directories. We also have to adjust: - plugin search directories - po file location - update paths for calls-doc target
This commit is contained in:
parent
8c6ece6a87
commit
86a8f3ae22
60 changed files with 19 additions and 13 deletions
|
@ -26,7 +26,7 @@ gnome.gtkdoc('calls',
|
|||
join_paths(meson.project_source_root(), 'src'),
|
||||
join_paths(meson.project_build_root(), 'src'),
|
||||
join_paths(meson.project_build_root(), 'src/dbus'),
|
||||
join_paths(meson.project_build_root(), 'plugins/ofono/libgdbofono'),
|
||||
join_paths(meson.project_build_root(), 'plugins/provider/ofono/libgdbofono'),
|
||||
],
|
||||
dependencies: calls_doc_deps,
|
||||
scan_args: [
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
subdir('mm')
|
||||
subdir('dummy')
|
||||
subdir('ofono')
|
||||
subdir('sip')
|
||||
subdir('provider/mm')
|
||||
subdir('provider/dummy')
|
||||
subdir('provider/ofono')
|
||||
subdir('provider/sip')
|
||||
|
|
|
@ -18,9 +18,9 @@ src/ui/history-box.ui
|
|||
src/ui/main-window.ui
|
||||
src/ui/new-call-box.ui
|
||||
src/ui/new-call-header-bar.ui
|
||||
plugins/mm/calls-mm-call.c
|
||||
plugins/mm/calls-mm-provider.c
|
||||
plugins/ofono/calls-ofono-provider.c
|
||||
plugins/sip/calls-sip-account-widget.c
|
||||
plugins/sip/calls-sip-call.c
|
||||
plugins/sip/sip-account-widget.ui
|
||||
plugins/provider/mm/calls-mm-call.c
|
||||
plugins/provider/mm/calls-mm-provider.c
|
||||
plugins/provider/ofono/calls-ofono-provider.c
|
||||
plugins/provider/sip/calls-sip-account-widget.c
|
||||
plugins/provider/sip/calls-sip-call.c
|
||||
plugins/provider/sip/sip-account-widget.ui
|
||||
|
|
|
@ -258,11 +258,14 @@ gint
|
|||
main (gint argc,
|
||||
gchar *argv[])
|
||||
{
|
||||
g_autofree char *plugin_dir_provider = NULL;
|
||||
|
||||
gtk_test_init (&argc, &argv, NULL);
|
||||
|
||||
/* Add builddir as search path */
|
||||
#ifdef PLUGIN_BUILDDIR
|
||||
peas_engine_add_search_path (peas_engine_get_default (), PLUGIN_BUILDDIR, NULL);
|
||||
plugin_dir_provider = g_build_filename (PLUGIN_BUILDDIR, "provider", NULL);
|
||||
peas_engine_add_search_path (peas_engine_get_default (), plugin_dir_provider, NULL);
|
||||
#endif
|
||||
|
||||
g_test_add_func("/Calls/Manager/without_provider", test_calls_manager_without_provider);
|
||||
|
|
|
@ -46,11 +46,14 @@ gint
|
|||
main (gint argc,
|
||||
gchar *argv[])
|
||||
{
|
||||
g_autofree char *plugin_dir_provider = NULL;
|
||||
|
||||
gtk_test_init (&argc, &argv, NULL);
|
||||
|
||||
/* Add builddir as search path */
|
||||
#ifdef PLUGIN_BUILDDIR
|
||||
peas_engine_add_search_path (peas_engine_get_default (), PLUGIN_BUILDDIR, NULL);
|
||||
plugin_dir_provider = g_build_filename (PLUGIN_BUILDDIR, "provider", NULL);
|
||||
peas_engine_add_search_path (peas_engine_get_default (), plugin_dir_provider, NULL);
|
||||
#endif
|
||||
|
||||
g_test_add_func("/Calls/Plugins/load_plugins", test_calls_plugin_loading);
|
||||
|
|
Loading…
Reference in a new issue