101e04c3fSmrg# Copyright © 2017 Broadcom 201e04c3fSmrg# 301e04c3fSmrg# Permission is hereby granted, free of charge, to any person obtaining a copy 401e04c3fSmrg# of this software and associated documentation files (the "Software"), to deal 501e04c3fSmrg# in the Software without restriction, including without limitation the rights 601e04c3fSmrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 701e04c3fSmrg# copies of the Software, and to permit persons to whom the Software is 801e04c3fSmrg# furnished to do so, subject to the following conditions: 901e04c3fSmrg# 1001e04c3fSmrg# The above copyright notice and this permission notice shall be included in 1101e04c3fSmrg# all copies or substantial portions of the Software. 1201e04c3fSmrg# 1301e04c3fSmrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1401e04c3fSmrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1501e04c3fSmrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1601e04c3fSmrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1701e04c3fSmrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 1801e04c3fSmrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 1901e04c3fSmrg# SOFTWARE. 2001e04c3fSmrg 2101e04c3fSmrglibbroadcom_qpu_files = files( 2201e04c3fSmrg 'qpu_disasm.c', 2301e04c3fSmrg 'qpu_instr.c', 2401e04c3fSmrg 'qpu_pack.c', 2501e04c3fSmrg) 2601e04c3fSmrg 2701e04c3fSmrglibbroadcom_qpu = static_library( 2801e04c3fSmrg ['broadcom_qpu', v3d_xml_pack], 2901e04c3fSmrg libbroadcom_qpu_files, 307ec681f3Smrg include_directories : [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux, inc_broadcom], 317ec681f3Smrg c_args : [no_override_init_args], 327ec681f3Smrg gnu_symbol_visibility : 'hidden', 3301e04c3fSmrg dependencies : [dep_libdrm, dep_valgrind], 3401e04c3fSmrg build_by_default : false, 3501e04c3fSmrg) 3601e04c3fSmrg 3701e04c3fSmrgv3d_libs += libbroadcom_qpu 3801e04c3fSmrg 3901e04c3fSmrgtest( 4001e04c3fSmrg 'qpu_disasm', 4101e04c3fSmrg executable( 4201e04c3fSmrg 'qpu_disasm', 'tests/qpu_disasm.c', 437ec681f3Smrg link_with: libbroadcom_qpu, 447ec681f3Smrg dependencies : idep_mesautil, 457ec681f3Smrg include_directories: [inc_include, inc_src, inc_mapi, inc_mesa, inc_gallium, inc_gallium_aux] 46ed98bd31Smaya ), 47ed98bd31Smaya suite : ['broadcom'], 4801e04c3fSmrg) 49