]> git.proxmox.com Git - mirror_qemu.git/blame - migration/meson.build
ram compress: Assert that the file buffer matches the result
[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',
119f50ce 21 'migration-hmp-cmds.c',
947701cc 22 'migration-stats.c',
55166230
MAL
23 'migration.c',
24 'multifd.c',
25 'multifd-zlib.c',
1f0776f1 26 'options.c',
55166230
MAL
27 'postcopy-ram.c',
28 'savevm.c',
29 'socket.c',
30 'tls.c',
67132620 31 'threadinfo.c',
76f67bac 32), gnutls)
55166230 33
3730a734 34softmmu_ss.add(when: rdma, if_true: files('rdma.c'))
406523f6
PB
35if get_option('live_block_migration').allowed()
36 softmmu_ss.add(files('block.c'))
37endif
b1def33d 38softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
55166230 39
43bd0bf3 40specific_ss.add(when: 'CONFIG_SOFTMMU',
b5ca3368
LS
41 if_true: files('dirtyrate.c',
42 'ram.c',
43 'ram-compress.c',
44 'target.c'))