1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(C) 2023 Marvell. 3 4if is_windows 5 build = false 6 reason = 'not supported on Windows' 7 subdir_done() 8endif 9 10sources = files( 11 'pdcp_cnt.c', 12 'pdcp_crypto.c', 13 'pdcp_ctrl_pdu.c', 14 'pdcp_process.c', 15 'pdcp_reorder.c', 16 'rte_pdcp.c', 17 ) 18headers = files('rte_pdcp.h') 19indirect_headers += files('rte_pdcp_group.h') 20 21deps += ['mbuf', 'net', 'cryptodev', 'security', 'reorder'] 22