ba9d2cbc01
This is the commint with the merge error (not in the submited patch). commit52623f23b0
Author: Lukas Straub <lukasstraub2@web.de> Date: Thu Apr 20 11:48:35 2023 +0200 ram-compress.c: Make target independent Make ram-compress.c target independent. Fixes:52623f23b0
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com> Message-Id: <20230509170217.83246-1-quintela@redhat.com>
47 lines
991 B
Meson
47 lines
991 B
Meson
# Files needed by unit tests
|
|
migration_files = files(
|
|
'migration-stats.c',
|
|
'page_cache.c',
|
|
'xbzrle.c',
|
|
'vmstate-types.c',
|
|
'vmstate.c',
|
|
'qemu-file.c',
|
|
'yank_functions.c',
|
|
)
|
|
softmmu_ss.add(migration_files)
|
|
|
|
softmmu_ss.add(files(
|
|
'block-dirty-bitmap.c',
|
|
'channel.c',
|
|
'channel-block.c',
|
|
'dirtyrate.c',
|
|
'exec.c',
|
|
'fd.c',
|
|
'global_state.c',
|
|
'migration-hmp-cmds.c',
|
|
'migration.c',
|
|
'multifd.c',
|
|
'multifd-zlib.c',
|
|
'ram-compress.c',
|
|
'options.c',
|
|
'postcopy-ram.c',
|
|
'savevm.c',
|
|
'socket.c',
|
|
'tls.c',
|
|
'threadinfo.c',
|
|
), gnutls)
|
|
|
|
if get_option('replication').allowed()
|
|
softmmu_ss.add(files('colo-failover.c', 'colo.c'))
|
|
endif
|
|
|
|
softmmu_ss.add(when: rdma, if_true: files('rdma.c'))
|
|
if get_option('live_block_migration').allowed()
|
|
softmmu_ss.add(files('block.c'))
|
|
endif
|
|
softmmu_ss.add(when: zstd, if_true: files('multifd-zstd.c'))
|
|
|
|
specific_ss.add(when: 'CONFIG_SOFTMMU',
|
|
if_true: files('ram.c',
|
|
'target.c'))
|