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