aboutsummaryrefslogtreecommitdiff
path: root/crypto/meson.build
blob: 1b244315b9cd5967170dc9f0bc3c0aa353d77227 (plain)
1
2
3
4
5
6
7
8
9
10
11
util_ss.add(files('aes.c'))
util_ss.add(files('init.c'))
if 'CONFIG_GCRYPT' in config_host
  util_ss.add(files('random-gcrypt.c'))
elif 'CONFIG_GNUTLS' in config_host
  util_ss.add(files('random-gnutls.c'), gnutls)
elif 'CONFIG_RNG_NONE' in config_host
  util_ss.add(files('random-none.c'))
else
  util_ss.add(files('random-platform.c'))
endif