2019-07-24 17:16:22 +02:00
|
|
|
# Files needed by unit tests
|
|
|
|
migration_files = files(
|
|
|
|
'page_cache.c',
|
|
|
|
'xbzrle.c',
|
|
|
|
'vmstate-types.c',
|
|
|
|
'vmstate.c',
|
|
|
|
'qemu-file.c',
|
2021-03-23 18:52:42 +01:00
|
|
|
'yank_functions.c',
|
2019-07-24 17:16:22 +02:00
|
|
|
)
|
2020-10-06 14:55:58 +02:00
|
|
|
softmmu_ss.add(migration_files)
|
2019-07-24 17:16:22 +02:00
|
|
|
|
|
|
|
softmmu_ss.add(files(
|
|
|
|
'block-dirty-bitmap.c',
|
|
|
|
'channel.c',
|
2022-06-20 13:01:53 +02:00
|
|
|
'channel-block.c',
|
2019-07-24 17:16:22 +02:00
|
|
|
'colo-failover.c',
|
|
|
|
'colo.c',
|
|
|
|
'exec.c',
|
|
|
|
'fd.c',
|
|
|
|
'global_state.c',
|
|
|
|
'migration.c',
|
|
|
|
'multifd.c',
|
|
|
|
'multifd-zlib.c',
|
|
|
|
'postcopy-ram.c',
|
|
|
|
'savevm.c',
|
|
|
|
'socket.c',
|
|
|
|
'tls.c',
|
2021-03-20 18:12:21 +01:00
|
|
|
), gnutls)
|
2019-07-24 17:16:22 +02:00
|
|
|
|
2022-04-20 17:33:41 +02:00
|
|
|
softmmu_ss.add(when: rdma, if_true: files('rdma.c'))
|
2021-10-13 11:43:54 +02:00
|
|
|
if get_option('live_block_migration').allowed()
|
|
|
|
softmmu_ss.add(files('block.c'))
|
|
|
|
endif
|
2020-11-17 13:37:39 +01:00
|
|
|
softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
|
2019-07-24 17:16:22 +02:00
|
|
|
|
2021-04-14 13:20:02 +02:00
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU',
|
|
|
|
if_true: files('dirtyrate.c', 'ram.c', 'target.c'))
|