xref: /qemu/migration/meson.build (revision 78f314cf)
1# Files needed by unit tests
2migration_files = files(
3  'migration-stats.c',
4  'page_cache.c',
5  'xbzrle.c',
6  'vmstate-types.c',
7  'vmstate.c',
8  'qemu-file.c',
9  'yank_functions.c',
10)
11
12softmmu_ss.add(files(
13  'block-dirty-bitmap.c',
14  'channel.c',
15  'channel-block.c',
16  'dirtyrate.c',
17  'exec.c',
18  'fd.c',
19  'global_state.c',
20  'migration-hmp-cmds.c',
21  'migration.c',
22  'multifd.c',
23  'multifd-zlib.c',
24  'ram-compress.c',
25  'options.c',
26  'postcopy-ram.c',
27  'savevm.c',
28  'socket.c',
29  'tls.c',
30  'threadinfo.c',
31), gnutls)
32
33if get_option('replication').allowed()
34  softmmu_ss.add(files('colo-failover.c', 'colo.c'))
35endif
36
37softmmu_ss.add(when: rdma, if_true: files('rdma.c'))
38if get_option('live_block_migration').allowed()
39  softmmu_ss.add(files('block.c'))
40endif
41softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
42
43specific_ss.add(when: 'CONFIG_SOFTMMU',
44                if_true: files('ram.c',
45                               'target.c'))
46