1# Copyright © 2020 Google, Inc 2# SPDX-License-Identifier: MIT 3 4libfreedreno_rnn_files = files( 5 'colors.c', 6 'colors.h', 7 'path.c', 8 'rnn.c', 9 'rnn.h', 10 'rnndec.c', 11 'rnndec.h', 12 'util.h', 13) 14 15libfreedreno_rnn = static_library( 16 'freedreno_rnn', 17 libfreedreno_rnn_files, 18 include_directories: [ 19 inc_src, 20 inc_include, 21 ], 22 c_args : [ 23 no_override_init_args, 24 '-DRNN_DEF_PATH="' + rnn_path + '"', 25 ], 26 gnu_symbol_visibility: 'hidden', 27 dependencies: [ dep_libxml2, idep_mesautil ], 28 build_by_default: false, 29) 30