2017-12-18 15:56:25 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright(c) 2017 Intel Corporation
|
2017-10-17 13:43:57 +01:00
|
|
|
|
|
|
|
name = 'ethdev'
|
2018-09-19 18:03:35 +02:00
|
|
|
sources = files('ethdev_private.c',
|
|
|
|
'ethdev_profile.c',
|
2020-04-23 00:33:45 +05:30
|
|
|
'ethdev_trace_points.c',
|
2018-09-19 18:03:36 +02:00
|
|
|
'rte_class_eth.c',
|
2017-10-17 13:43:57 +01:00
|
|
|
'rte_ethdev.c',
|
|
|
|
'rte_flow.c',
|
|
|
|
'rte_mtr.c',
|
|
|
|
'rte_tm.c')
|
|
|
|
|
|
|
|
headers = files('rte_ethdev.h',
|
|
|
|
'rte_ethdev_driver.h',
|
|
|
|
'rte_ethdev_core.h',
|
|
|
|
'rte_ethdev_pci.h',
|
2020-04-23 00:33:45 +05:30
|
|
|
'rte_ethdev_trace.h',
|
|
|
|
'rte_ethdev_trace_fp.h',
|
2017-10-17 13:43:57 +01:00
|
|
|
'rte_ethdev_vdev.h',
|
|
|
|
'rte_eth_ctrl.h',
|
|
|
|
'rte_dev_info.h',
|
|
|
|
'rte_flow.h',
|
|
|
|
'rte_flow_driver.h',
|
|
|
|
'rte_mtr.h',
|
|
|
|
'rte_mtr_driver.h',
|
|
|
|
'rte_tm.h',
|
|
|
|
'rte_tm_driver.h')
|
|
|
|
|
2020-04-30 17:01:34 +01:00
|
|
|
deps += ['net', 'kvargs', 'meter', 'telemetry']
|