cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

meson.build (847B)


      1softmmu_ss.add([files(
      2  'cryptodev-builtin.c',
      3  'cryptodev.c',
      4  'hostmem-ram.c',
      5  'hostmem.c',
      6  'rng-builtin.c',
      7  'rng-egd.c',
      8  'rng.c',
      9  'confidential-guest-support.c',
     10), numa])
     11
     12softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('rng-random.c'))
     13softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files('hostmem-file.c'))
     14softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('hostmem-memfd.c'))
     15softmmu_ss.add(when: ['CONFIG_VHOST_USER', 'CONFIG_VIRTIO'], if_true: files('vhost-user.c'))
     16softmmu_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('cryptodev-vhost.c'))
     17softmmu_ss.add(when: ['CONFIG_VIRTIO_CRYPTO', 'CONFIG_VHOST_CRYPTO'], if_true: files('cryptodev-vhost-user.c'))
     18softmmu_ss.add(when: 'CONFIG_GIO', if_true: [files('dbus-vmstate.c'), gio])
     19softmmu_ss.add(when: 'CONFIG_SGX', if_true: files('hostmem-epc.c'))
     20
     21subdir('tpm')