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