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