New upstream version 18.11-rc1
[deb_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         'ifc',
21         'ixgbe',
22         'kni',
23         'liquidio',
24         'mlx4',
25         'mlx5',
26         'mvneta',
27         'mvpp2',
28         'netvsc',
29         'nfp',
30         'null', 'octeontx', 'pcap', 'qede', 'ring',
31         'sfc',
32         'softnic',
33         'szedata2',
34         'tap',
35         'thunderx',
36         'vdev_netvsc',
37         'vhost',
38         'virtio',
39         'vmxnet3',
40 ]
41 std_deps = ['ethdev', 'kvargs'] # 'ethdev' also pulls in mbuf, net, eal etc
42 std_deps += ['bus_pci']         # very many PMDs depend on PCI, so make std
43 std_deps += ['bus_vdev']        # same with vdev bus
44 config_flag_fmt = 'RTE_LIBRTE_@0@_PMD'
45 driver_name_fmt = 'rte_pmd_@0@'