]> git.proxmox.com Git - mirror_qemu.git/blame - migration/meson.build
block/copy-before-write: implement cbw-timeout option
[mirror_qemu.git] / migration / meson.build
CommitLineData
55166230
MAL
1# Files needed by unit tests
2migration_files = files(
3 'page_cache.c',
4 'xbzrle.c',
5 'vmstate-types.c',
6 'vmstate.c',
55166230 7 'qemu-file.c',
1a92d6d5 8 'yank_functions.c',
55166230 9)
7e6edef3 10softmmu_ss.add(migration_files)
55166230
MAL
11
12softmmu_ss.add(files(
13 'block-dirty-bitmap.c',
14 'channel.c',
65cf200a 15 'channel-block.c',
55166230
MAL
16 'colo-failover.c',
17 'colo.c',
18 'exec.c',
19 'fd.c',
20 'global_state.c',
21 'migration.c',
22 'multifd.c',
23 'multifd-zlib.c',
24 'postcopy-ram.c',
25 'savevm.c',
26 'socket.c',
27 'tls.c',
76f67bac 28), gnutls)
55166230 29
3730a734 30softmmu_ss.add(when: rdma, if_true: files('rdma.c'))
406523f6
PB
31if get_option('live_block_migration').allowed()
32 softmmu_ss.add(files('block.c'))
33endif
b1def33d 34softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
55166230 35
43bd0bf3
TH
36specific_ss.add(when: 'CONFIG_SOFTMMU',
37 if_true: files('dirtyrate.c', 'ram.c', 'target.c'))