net/nfp: move CPP bridge to separate file
[dpdk.git] / drivers / net / nfp / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2018 Intel Corporation
3
4 if not is_linux or not dpdk_conf.get('RTE_ARCH_64')
5     build = false
6     reason = 'only supported on 64-bit Linux'
7 endif
8 sources = files(
9         'nfpcore/nfp_cpp_pcie_ops.c',
10         'nfpcore/nfp_nsp.c',
11         'nfpcore/nfp_cppcore.c',
12         'nfpcore/nfp_resource.c',
13         'nfpcore/nfp_mip.c',
14         'nfpcore/nfp_nffw.c',
15         'nfpcore/nfp_rtsym.c',
16         'nfpcore/nfp_nsp_cmds.c',
17         'nfpcore/nfp_crc.c',
18         'nfpcore/nfp_mutex.c',
19         'nfpcore/nfp_nsp_eth.c',
20         'nfpcore/nfp_hwinfo.c',
21         'nfp_net.c',
22         'nfp_rxtx.c',
23         'nfp_cpp_bridge.c',
24 )