mesa/src/amd/compiler/tests/meson.build
Marek Olšák f22f117d1a amd: add meson variable idep_amd_generated_headers for all generated headers
group all generated header under the same variable

Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40084>
2026-02-28 05:23:59 +00:00

66 lines
1.8 KiB
Meson

# Copyright © 2020 Valve Corporation
# SPDX-License-Identifier: MIT
aco_tests_files = files(
'framework.h',
'helpers.cpp',
'helpers.h',
'main.cpp',
'test_assembler.cpp',
'test_builder.cpp',
'test_d3d11_derivs.cpp',
'test_hard_clause.cpp',
'test_insert_nops.cpp',
'test_insert_waitcnt.cpp',
'test_isel.cpp',
'test_lower_branches.cpp',
'test_lower_subdword.cpp',
'test_optimizer.cpp',
'test_reduce_assign.cpp',
'test_regalloc.cpp',
'test_optimizer_postRA.cpp',
'test_scheduler.cpp',
'test_sdwa.cpp',
'test_to_hw_instr.cpp',
'test_tests.cpp',
)
spirv_files = files(
'test_isel.cpp',
'test_d3d11_derivs.cpp',
)
gen_spirv = generator(
prog_python,
output : '@BASENAME@-spirv.h',
arguments : [
join_paths(meson.current_source_dir(), 'glsl_scraper.py'),
'@INPUT@', '--with-glslang', prog_glslang.full_path(), '-o', '@OUTPUT@',
],
)
gen_spirv_files = gen_spirv.process(spirv_files)
test(
'aco_tests',
executable(
'aco_tests',
[aco_tests_files, gen_spirv_files],
cpp_args : ['-DACO_TEST_SOURCE_DIR="@0@"'.format(meson.current_source_dir()),
'-DACO_TEST_BUILD_ROOT="@0@"'.format(meson.project_build_root()),
'-DACO_TEST_PYTHON_BIN="@0@"'.format(prog_python.full_path())] +
cpp_args_aco,
include_directories : [
inc_include, inc_src, inc_amd, inc_amd_common, inc_amd_common_llvm,
],
link_with : [
libamd_common, libamd_common_llvm, libvulkan_radeon, libamdgpu_noop_drm_shim,
],
dependencies : [
dep_llvm, dep_thread, idep_aco, idep_nir, idep_mesautil, idep_vulkan_util_headers, idep_amd_generated_headers,
],
gnu_symbol_visibility : 'hidden',
build_by_default : true,
),
suite : ['amd', 'compiler'],
env : ['LD_PRELOAD=@0@'.format(libamdgpu_noop_drm_shim.full_path())],
)