Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mesa
Path: blob/21.2-virgl/src/amd/compiler/tests/meson.build
7229 views
1
# Copyright © 2020 Valve Corporation
2
3
# Permission is hereby granted, free of charge, to any person obtaining a copy
4
# of this software and associated documentation files (the "Software"), to deal
5
# in the Software without restriction, including without limitation the rights
6
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
# copies of the Software, and to permit persons to whom the Software is
8
# furnished to do so, subject to the following conditions:
9
10
# The above copyright notice and this permission notice shall be included in
11
# all copies or substantial portions of the Software.
12
13
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
# SOFTWARE.
20
aco_tests_files = files(
21
'framework.h',
22
'helpers.cpp',
23
'helpers.h',
24
'main.cpp',
25
'test_assembler.cpp',
26
'test_builder.cpp',
27
'test_hard_clause.cpp',
28
'test_insert_nops.cpp',
29
'test_isel.cpp',
30
'test_optimizer.cpp',
31
'test_regalloc.cpp',
32
'test_optimizer_postRA.cpp',
33
'test_sdwa.cpp',
34
'test_to_hw_instr.cpp',
35
'test_tests.cpp',
36
)
37
38
spirv_files = files(
39
'test_isel.cpp',
40
)
41
42
gen_spirv = generator(prog_python,
43
output : '@[email protected]',
44
arguments : [join_paths(meson.current_source_dir(), 'glsl_scraper.py'),
45
'@INPUT@', '--with-glslang', prog_glslang.path(), '-o', '@OUTPUT@'])
46
gen_spirv_files = gen_spirv.process(spirv_files)
47
48
test(
49
'aco_tests',
50
executable(
51
'aco_tests',
52
[aco_tests_files, gen_spirv_files],
53
cpp_args : ['-DACO_TEST_SOURCE_DIR="@0@"'.format(meson.current_source_dir()),
54
'-DACO_TEST_BUILD_ROOT="@0@"'.format(meson.build_root()),
55
'-DACO_TEST_PYTHON_BIN="@0@"'.format(prog_python.path())] +
56
cpp_args_aco,
57
include_directories : [
58
inc_include, inc_src, inc_compiler, inc_mesa, inc_mapi, inc_amd, inc_amd_common, inc_amd_common_llvm,
59
],
60
link_with : [
61
libamd_common, libamd_common_llvm, libvulkan_radeon,
62
],
63
dependencies : [
64
dep_llvm, dep_thread, idep_aco, idep_nir, idep_mesautil, idep_vulkan_util_headers,
65
],
66
gnu_symbol_visibility : 'hidden',
67
build_by_default : true,
68
),
69
suite : ['amd', 'compiler'],
70
)
71
72