]> git.proxmox.com Git - mirror_qemu.git/blob - migration/meson.build
migration: save_compress_page() can take block through pss
[mirror_qemu.git] / migration / meson.build
1 # Files needed by unit tests
2 migration_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
12 system_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 'file.c',
20 'global_state.c',
21 'migration-hmp-cmds.c',
22 'migration.c',
23 'multifd.c',
24 'multifd-zlib.c',
25 'ram-compress.c',
26 'options.c',
27 'postcopy-ram.c',
28 'savevm.c',
29 'socket.c',
30 'tls.c',
31 'threadinfo.c',
32 ), gnutls)
33
34 if get_option('replication').allowed()
35 system_ss.add(files('colo-failover.c', 'colo.c'))
36 endif
37
38 system_ss.add(when: rdma, if_true: files('rdma.c'))
39 if get_option('live_block_migration').allowed()
40 system_ss.add(files('block.c'))
41 endif
42 system_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
43
44 specific_ss.add(when: 'CONFIG_SYSTEM_ONLY',
45 if_true: files('ram.c',
46 'target.c'))