pidgin/pidgin

Remove unused utilities

20 months ago, Elliott Sales de Andrade
78a984e17548
Remove unused utilities

Testing Done:
Compiled.

Reviewed at https://reviews.imfreedom.org/r/1871/
PROGS = [
'account_option',
'account_manager',
'authorization_request',
'circular_buffer',
'contact',
'contact_manager',
'credential_provider',
'history_adapter',
'history_manager',
'image',
'keyvaluepair',
'markup',
'menu',
'notification',
'notification_manager',
'person',
'protocol_action',
'protocol_xfer',
'purplepath',
'queued_output_stream',
'tags',
'util',
'whiteboard_manager',
'xmlnode',
]
test_ui = static_library(
'test-ui',
'test_ui.c',
'test_ui.h',
c_args: [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()),
'-DG_LOG_USE_STRUCTURED',
'-DG_LOG_DOMAIN="Purple-TestUI"',
],
dependencies: [libpurple_dep, glib]
)
testenv.set('XDG_CONFIG_HOME', meson.current_build_dir() / 'config')
foreach prog : PROGS
e = executable('test_' + prog, 'test_@0@.c'.format(prog),
c_args : [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir())
],
dependencies : [libpurple_dep, glib],
link_with: test_ui,
)
test(prog, e,
env: testenv,
)
endforeach
e = executable('test_credential_manager', 'test_credential_manager.c',
c_args : [
'-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir())
],
dependencies : [libpurple_dep, glib],
link_with: test_ui,
)
test('credential_manager', e, env: testenv, is_parallel : false)