Bruce Richardson 7d5cfaa750 build: fix formatting of Meson lists
Running "./devtools/check-meson.py --fix" on the DPDK repo fixes a
number of issues with whitespace and formatting of files:

* indentation of lists
* missing trailing commas on final list element
* multiple list entries per line when list is not all single-line

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
2021-05-04 15:01:47 +02:00

20 lines
473 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2017 Cavium, Inc
sources = files(
'evt_main.c',
'evt_options.c',
'evt_test.c',
'parser.c',
'test_order_atq.c',
'test_order_common.c',
'test_order_queue.c',
'test_perf_atq.c',
'test_perf_common.c',
'test_perf_queue.c',
'test_pipeline_atq.c',
'test_pipeline_common.c',
'test_pipeline_queue.c',
)
deps += 'eventdev'