1# SPDX-License-Identifier: BSD-3-Clause 2# Copyright(c) 2017 Intel Corporation 3 4headers = files( 5 'rte_fbk_hash.h', 6 'rte_hash_crc.h', 7 'rte_hash.h', 8 'rte_jhash.h', 9 'rte_thash.h', 10 'rte_thash_gfni.h', 11) 12indirect_headers += files( 13 'rte_crc_arm64.h', 14 'rte_crc_generic.h', 15 'rte_crc_sw.h', 16 'rte_crc_x86.h', 17 'rte_thash_x86_gfni.h', 18) 19 20sources = files( 21 'rte_cuckoo_hash.c', 22 'rte_hash_crc.c', 23 'rte_fbk_hash.c', 24 'rte_thash.c', 25 'rte_thash_gfni.c', 26 'rte_thash_gf2_poly_math.c', 27) 28 29deps += ['net'] 30deps += ['ring'] 31deps += ['rcu'] 32