1# Copyright 2017 Intel Corporation 2# SPDX-License-Identifier: MIT 3 4agx_pack = custom_target( 5 'agx_pack.h', 6 input : ['gen_pack.py', 'cmdbuf.xml'], 7 output : 'agx_pack.h', 8 command : [prog_python, '@INPUT@'], 9 capture : true, 10) 11 12idep_agx_pack = declare_dependency( 13 sources : [agx_pack], 14 dependencies : dep_valgrind, 15 include_directories : include_directories('.'), 16) 17 18 19