drivers: change indentation in build files
[dpdk.git] / drivers / event / dlb2 / meson.build
1
2 # SPDX-License-Identifier: BSD-3-Clause
3 # Copyright(c) 2019-2020 Intel Corporation
4
5 if not is_linux or not dpdk_conf.has('RTE_ARCH_X86_64')
6         build = false
7         reason = 'only supported on x86_64 Linux'
8         subdir_done()
9 endif
10
11 sources = files(
12         'dlb2.c',
13         'dlb2_iface.c',
14         'dlb2_xstats.c',
15         'pf/dlb2_main.c',
16         'pf/dlb2_pf.c',
17         'pf/base/dlb2_resource.c',
18         'rte_pmd_dlb2.c',
19         'dlb2_selftest.c',
20 )
21
22 headers = files('rte_pmd_dlb2.h')
23
24 deps += ['mbuf', 'mempool', 'ring', 'pci', 'bus_pci']