drivers: change indentation in build files
[dpdk.git] / drivers / crypto / octeontx / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Cavium, Inc
3 if not is_linux
4     build = false
5     reason = 'only supported on Linux'
6 endif
7
8 deps += ['bus_pci']
9 deps += ['common_cpt']
10
11 sources = files(
12         'otx_cryptodev.c',
13         'otx_cryptodev_capabilities.c',
14         'otx_cryptodev_hw_access.c',
15         'otx_cryptodev_mbox.c',
16         'otx_cryptodev_ops.c',
17 )
18
19 includes += include_directories('../../common/cpt')