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