1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017 Intel Corporation 3 4sources = files('rte_table_acl.c', 5 'rte_table_lpm.c', 6 'rte_table_lpm_ipv6.c', 7 'rte_table_hash_cuckoo.c', 8 'rte_table_hash_key8.c', 9 'rte_table_hash_key16.c', 10 'rte_table_hash_key32.c', 11 'rte_table_hash_ext.c', 12 'rte_table_hash_lru.c', 13 'rte_table_array.c', 14 'rte_table_stub.c', 15 'rte_swx_table_em.c',) 16headers = files('rte_table.h', 17 'rte_table_acl.h', 18 'rte_table_lpm.h', 19 'rte_table_lpm_ipv6.h', 20 'rte_table_hash.h', 21 'rte_table_hash_cuckoo.h', 22 'rte_table_hash_func.h', 23 'rte_table_hash_func_arm64.h', 24 'rte_lru.h', 25 'rte_table_array.h', 26 'rte_table_stub.h', 27 'rte_swx_table.h', 28 'rte_swx_table_em.h',) 29deps += ['mbuf', 'port', 'lpm', 'hash', 'acl'] 30 31if arch_subdir == 'x86' 32 headers += files('rte_lru_x86.h') 33endif 34