net/mlx5: support meson build
[dpdk.git] / drivers / net / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017 Intel Corporation
3
4 drivers = ['af_packet',
5         'ark',
6         'avp',
7         'axgbe', 'bonding',
8         'bnx2x',
9         'bnxt',
10         'cxgbe',
11         'dpaa', 'dpaa2',
12         'e1000',
13         'ena',
14         'enic',
15         'failsafe',
16         'fm10k', 'i40e',
17         'ifc',
18         'ixgbe',
19         'kni',
20         'liquidio',
21         'mlx5',
22         'mvpp2',
23         'netvsc',
24         'nfp',
25         'null', 'octeontx', 'pcap', 'qede', 'ring',
26         'sfc',
27         'softnic',
28         'szedata2',
29         'tap',
30         'thunderx',
31         'vdev_netvsc',
32         'vhost',
33         'virtio',
34         'vmxnet3',
35 ]
36 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
37 std_deps += ['bus_pci']         # very many PMDs depend on PCI, so make std
38 std_deps += ['bus_vdev']        # same with vdev bus
39 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
40 driver_name_fmt = 'rte_pmd_@0@'