intel: Move anv_gem_supports_syncobj_wait to common code.
[mesa.git] / src / intel / common / meson.build
1 # Copyright © 2017 Intel 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
21 # TODO: android?
22
23 files_libintel_common = files(
24 'gen_aux_map.c',
25 'gen_aux_map.h',
26 'gen_buffer_alloc.h',
27 'gen_clflush.h',
28 'gen_batch_decoder.c',
29 'gen_decoder.c',
30 'gen_decoder.h',
31 'gen_disasm.c',
32 'gen_disasm.h',
33 'gen_gem.c',
34 'gen_gem.h',
35 'gen_guardband.h',
36 'gen_l3_config.c',
37 'gen_l3_config.h',
38 'gen_urb_config.c',
39 'gen_sample_positions.h',
40 'intel_log.c',
41 )
42
43 libintel_common = static_library(
44 ['intel_common', genX_xml_h],
45 files_libintel_common,
46 include_directories : [inc_include, inc_src, inc_mesa, inc_gallium, inc_intel],
47 c_args : [c_vis_args, no_override_init_args],
48 link_with : [libisl],
49 dependencies : [dep_expat, dep_libdrm, dep_thread, idep_genxml],
50 )
51
52 libintel_extra_dependencies = []
53 if with_platform_android
54 libintel_extra_dependencies += dep_android
55 endif
56
57 idep_libintel_common = declare_dependency(
58 link_with: [libintel_common],
59 dependencies: [libintel_extra_dependencies],
60 )
61
62 install_intel_gpu_tests = get_option('install-intel-gpu-tests')
63
64 if install_intel_gpu_tests
65 foreach g : [['70', 'gen7'], ['75', 'hsw'], ['80', 'gen8'],
66 ['90', 'gen9'], ['110', 'gen11'], ['120', 'gen12']]
67 executable(
68 'intel_@0@_mi_builder_test'.format(g[1]),
69 files('tests/gen_mi_builder_test.cpp'),
70 cpp_args : [
71 cpp_vis_args, cpp_msvc_compat_args,
72 '-DGEN_VERSIONx10=@0@'.format(g[0])
73 ],
74 include_directories : [inc_include, inc_src, inc_intel],
75 link_with : [libintel_dev],
76 dependencies : [dep_libdrm, idep_gtest, idep_genxml, idep_mesautil],
77 install : install_intel_gpu_tests,
78 )
79 endforeach
80 endif
81
82 if with_tests
83 gentest_xml = files('tests/gentest.xml')
84 _name = 'gentest_pack.h'
85 gentest_pack = custom_target(
86 _name,
87 input : [gen_pack_header_py, gentest_xml],
88 output : _name,
89 command : [prog_python, '@INPUT@'],
90 capture : true,
91 )
92
93 genxml_path = join_paths(meson.source_root(),
94 '@0@'.format(gentest_xml[0]))
95
96 test(
97 'genxml_test',
98 executable(
99 'genxml_test',
100 ['tests/genxml_test.c', gentest_pack],
101 include_directories : [inc_include, inc_src, inc_intel],
102 dependencies : idep_mesautil,
103 link_with : libintel_common,
104 c_args : [
105 '-DGENXML_PATH="@0@"'.format(genxml_path)
106 ],
107 ),
108 args : ['-quiet'],
109 suite : ['intel'],
110 )
111 endif