2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add([files(
|
2019-07-24 18:23:16 +03:00
|
|
|
'cryptodev-builtin.c',
|
2023-03-01 13:58:42 +03:00
|
|
|
'cryptodev-hmp-cmds.c',
|
2019-07-24 18:23:16 +03:00
|
|
|
'cryptodev.c',
|
|
|
|
'hostmem-ram.c',
|
|
|
|
'hostmem.c',
|
|
|
|
'rng-builtin.c',
|
|
|
|
'rng-egd.c',
|
|
|
|
'rng.c',
|
2020-05-05 10:00:30 +03:00
|
|
|
'confidential-guest-support.c',
|
2019-07-24 18:23:16 +03:00
|
|
|
), numa])
|
|
|
|
|
2023-11-03 11:17:48 +03:00
|
|
|
if host_os != 'windows'
|
2023-08-30 12:29:54 +03:00
|
|
|
system_ss.add(files('rng-random.c'))
|
|
|
|
system_ss.add(files('hostmem-file.c'))
|
2024-06-18 13:05:19 +03:00
|
|
|
system_ss.add([files('hostmem-shm.c'), rt])
|
2023-08-30 12:29:54 +03:00
|
|
|
endif
|
2023-11-03 11:17:48 +03:00
|
|
|
if host_os == 'linux'
|
2023-05-26 13:20:39 +03:00
|
|
|
system_ss.add(files('hostmem-memfd.c'))
|
2024-06-05 11:30:27 +03:00
|
|
|
system_ss.add(files('host_iommu_device.c'))
|
2023-05-26 13:20:39 +03:00
|
|
|
endif
|
2022-10-08 11:50:30 +03:00
|
|
|
if keyutils.found()
|
2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add(keyutils, files('cryptodev-lkcf.c'))
|
2022-10-08 11:50:30 +03:00
|
|
|
endif
|
2022-04-20 18:34:06 +03:00
|
|
|
if have_vhost_user
|
2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add(when: 'CONFIG_VIRTIO', if_true: files('vhost-user.c'))
|
2022-04-20 18:34:06 +03:00
|
|
|
endif
|
2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost.c'))
|
2023-11-21 11:44:00 +03:00
|
|
|
system_ss.add(when: 'CONFIG_IOMMUFD', if_true: files('iommufd.c'))
|
2022-04-20 18:34:06 +03:00
|
|
|
if have_vhost_user_crypto
|
2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost-user.c'))
|
2022-04-20 18:34:06 +03:00
|
|
|
endif
|
2023-06-13 16:33:47 +03:00
|
|
|
system_ss.add(when: gio, if_true: files('dbus-vmstate.c'))
|
|
|
|
system_ss.add(when: 'CONFIG_SGX', if_true: files('hostmem-epc.c'))
|
2019-07-24 18:23:16 +03:00
|
|
|
|
2024-07-03 12:20:26 +03:00
|
|
|
system_ss.add(when: 'CONFIG_SPDM_SOCKET', if_true: files('spdm-socket.c'))
|
|
|
|
|
2019-07-24 18:23:16 +03:00
|
|
|
subdir('tpm')
|