crypto/bcmfs: introduce BCMFS driver
[dpdk.git] / drivers / crypto / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 if is_windows
5         subdir_done()
6 endif
7
8 drivers = ['aesni_gcm',
9            'aesni_mb',
10            'armv8',
11            'bcmfs',
12            'caam_jr',
13            'ccp',
14            'dpaa_sec',
15            'dpaa2_sec',
16            'kasumi',
17            'mvsam',
18            'nitrox',
19            'null',
20            'octeontx',
21            'octeontx2',
22            'openssl',
23            'qat',
24            'scheduler',
25            'snow3g',
26            'virtio',
27            'zuc']
28
29 std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps
30 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
31 driver_name_fmt = 'rte_pmd_@0@'