45da3bb1ee09d5a4be7580041a19b2fc680b0ee3
[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         'atlantic',
7         'avf',
8         'avp',
9         'axgbe', 'bonding',
10         'bnx2x',
11         'bnxt',
12         'cxgbe',
13         'dpaa', 'dpaa2',
14         'e1000',
15         'ena',
16         'enetc',
17         'enic',
18         'failsafe',
19         'fm10k', 'i40e',
20         'ice',
21         'ifc',
22         'ixgbe',
23         'kni',
24         'liquidio',
25         'mlx4',
26         'mlx5',
27         'mvneta',
28         'mvpp2',
29         'netvsc',
30         'nfp',
31         'null', 'octeontx', 'pcap', 'qede', 'ring',
32         'sfc',
33         'softnic',
34         'szedata2',
35         'tap',
36         'thunderx',
37         'vdev_netvsc',
38         'vhost',
39         'virtio',
40         'vmxnet3',
41 ]
42 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
43 std_deps += ['bus_pci']         # very many PMDs depend on PCI, so make std
44 std_deps += ['bus_vdev']        # same with vdev bus
45 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
46 driver_name_fmt = 'rte_pmd_@0@'