xref: /qemu/crypto/meson.build (revision a81df1b6)
1util_ss.add(files('aes.c'))
2util_ss.add(files('init.c'))
3if 'CONFIG_GCRYPT' in config_host
4  util_ss.add(files('random-gcrypt.c'))
5elif 'CONFIG_GNUTLS' in config_host
6  util_ss.add(files('random-gnutls.c'), gnutls)
7elif 'CONFIG_RNG_NONE' in config_host
8  util_ss.add(files('random-none.c'))
9else
10  util_ss.add(files('random-platform.c'))
11endif
12