cf995efc53
Ensure all lists of drivers are standardized: * one driver per line * lists double-indented with spaces (as they are line continuations) * elements in alphabetical order * opening and closing list brackets "[" & "]" on own lines * last element has trailing comma Any code snippets in the list files is adjusted to single-indent using whitespace to correspond to the new style also. The lists of standard library dependencies per class, and other short lists are not formatted one-per-line as these lists are not expected to grow beyond 2 or 3 entries. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
31 lines
552 B
Meson
31 lines
552 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
if is_windows
|
|
subdir_done()
|
|
endif
|
|
|
|
drivers = [
|
|
'aesni_gcm',
|
|
'aesni_mb',
|
|
'armv8',
|
|
'bcmfs',
|
|
'caam_jr',
|
|
'ccp',
|
|
'dpaa_sec',
|
|
'dpaa2_sec',
|
|
'kasumi',
|
|
'mvsam',
|
|
'nitrox',
|
|
'null',
|
|
'octeontx',
|
|
'octeontx2',
|
|
'openssl',
|
|
'scheduler',
|
|
'snow3g',
|
|
'virtio',
|
|
'zuc',
|
|
]
|
|
|
|
std_deps = ['cryptodev'] # cryptodev pulls in all other needed deps
|