]> git.proxmox.com Git - mirror_qemu.git/blob - util/meson.build
meson, configure: move libgio test to meson
[mirror_qemu.git] / util / meson.build
1 util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c'))
2 if not config_host_data.get('CONFIG_ATOMIC64')
3 util_ss.add(files('atomic64.c'))
4 endif
5 util_ss.add(when: 'CONFIG_POSIX', if_true: files('aio-posix.c'))
6 util_ss.add(when: 'CONFIG_POSIX', if_true: files('fdmon-poll.c'))
7 if config_host_data.get('CONFIG_EPOLL_CREATE1')
8 util_ss.add(files('fdmon-epoll.c'))
9 endif
10 util_ss.add(when: linux_io_uring, if_true: files('fdmon-io_uring.c'))
11 util_ss.add(when: 'CONFIG_POSIX', if_true: files('compatfd.c'))
12 util_ss.add(when: 'CONFIG_POSIX', if_true: files('event_notifier-posix.c'))
13 util_ss.add(when: 'CONFIG_POSIX', if_true: files('mmap-alloc.c'))
14 freebsd_dep = []
15 if targetos == 'freebsd'
16 freebsd_dep = util
17 endif
18 util_ss.add(when: 'CONFIG_POSIX', if_true: [files('oslib-posix.c'), freebsd_dep])
19 util_ss.add(when: 'CONFIG_POSIX', if_true: files('qemu-thread-posix.c'))
20 util_ss.add(when: 'CONFIG_POSIX', if_true: files('memfd.c'))
21 util_ss.add(when: 'CONFIG_WIN32', if_true: files('aio-win32.c'))
22 util_ss.add(when: 'CONFIG_WIN32', if_true: files('event_notifier-win32.c'))
23 util_ss.add(when: 'CONFIG_WIN32', if_true: files('oslib-win32.c'))
24 util_ss.add(when: 'CONFIG_WIN32', if_true: files('qemu-thread-win32.c'))
25 util_ss.add(when: 'CONFIG_WIN32', if_true: winmm)
26 util_ss.add(files('envlist.c', 'path.c', 'module.c'))
27 util_ss.add(files('host-utils.c'))
28 util_ss.add(files('bitmap.c', 'bitops.c'))
29 util_ss.add(files('fifo8.c'))
30 util_ss.add(files('cacheinfo.c', 'cacheflush.c'))
31 util_ss.add(files('error.c', 'error-report.c'))
32 util_ss.add(files('qemu-print.c'))
33 util_ss.add(files('id.c'))
34 util_ss.add(files('qemu-config.c', 'notify.c'))
35 util_ss.add(files('qemu-option.c', 'qemu-progress.c'))
36 util_ss.add(files('keyval.c'))
37 util_ss.add(files('crc32c.c'))
38 util_ss.add(files('uuid.c'))
39 util_ss.add(files('getauxval.c'))
40 util_ss.add(files('rcu.c'))
41 if have_membarrier
42 util_ss.add(files('sys_membarrier.c'))
43 endif
44 util_ss.add(files('log.c'))
45 util_ss.add(files('qdist.c'))
46 util_ss.add(files('qht.c'))
47 util_ss.add(files('qsp.c'))
48 util_ss.add(files('range.c'))
49 util_ss.add(files('stats64.c'))
50 util_ss.add(files('systemd.c'))
51 util_ss.add(files('transactions.c'))
52 util_ss.add(when: 'CONFIG_POSIX', if_true: files('drm.c'))
53 util_ss.add(files('guest-random.c'))
54 util_ss.add(files('yank.c'))
55 util_ss.add(files('int128.c'))
56 util_ss.add(files('memalign.c'))
57
58 if have_user
59 util_ss.add(files('selfmap.c'))
60 endif
61
62 if have_system
63 util_ss.add(files('crc-ccitt.c'))
64 util_ss.add(when: gio, if_true: files('dbus.c'))
65 util_ss.add(when: 'CONFIG_LINUX', if_true: files('userfaultfd.c'))
66 endif
67
68 if have_block
69 util_ss.add(files('aiocb.c', 'async.c', 'aio-wait.c'))
70 util_ss.add(files('base64.c'))
71 util_ss.add(files('buffer.c'))
72 util_ss.add(files('bufferiszero.c'))
73 util_ss.add(files('coroutine-@0@.c'.format(config_host['CONFIG_COROUTINE_BACKEND'])))
74 util_ss.add(files('hbitmap.c'))
75 util_ss.add(files('hexdump.c'))
76 util_ss.add(files('iova-tree.c'))
77 util_ss.add(files('iov.c', 'qemu-sockets.c', 'uri.c'))
78 util_ss.add(files('lockcnt.c'))
79 util_ss.add(files('main-loop.c'))
80 util_ss.add(files('nvdimm-utils.c'))
81 util_ss.add(files('qemu-coroutine.c', 'qemu-coroutine-lock.c', 'qemu-coroutine-io.c'))
82 util_ss.add(when: 'CONFIG_LINUX', if_true: [
83 files('vhost-user-server.c'), vhost_user
84 ])
85 util_ss.add(files('block-helpers.c'))
86 util_ss.add(files('qemu-coroutine-sleep.c'))
87 util_ss.add(files('qemu-co-shared-resource.c'))
88 util_ss.add(files('thread-pool.c', 'qemu-timer.c'))
89 util_ss.add(files('readline.c'))
90 util_ss.add(files('throttle.c'))
91 util_ss.add(files('timed-average.c'))
92 if config_host_data.get('CONFIG_INOTIFY1')
93 util_ss.add(files('filemonitor-inotify.c'))
94 else
95 util_ss.add(files('filemonitor-stub.c'))
96 endif
97 util_ss.add(when: 'CONFIG_LINUX', if_true: files('vfio-helpers.c'))
98 endif