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