meson: Use consistent style for tests
[mesa.git] / src / intel / vulkan / 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 anv_entrypoints = custom_target(
22 'anv_entrypoints.[ch]',
23 input : ['anv_entrypoints_gen.py', vk_api_xml, vk_android_native_buffer_xml],
24 output : ['anv_entrypoints.h', 'anv_entrypoints.c'],
25 command : [
26 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
27 '--outdir', meson.current_build_dir(),
28 ],
29 depend_files : files('anv_extensions.py'),
30 )
31
32 anv_extensions_c = custom_target(
33 'anv_extensions.c',
34 input : ['anv_extensions.py', vk_api_xml, vk_android_native_buffer_xml],
35 output : 'anv_extensions.c',
36 command : [
37 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
38 '--out', '@OUTPUT@',
39 ],
40 )
41
42 intel_icd = custom_target(
43 'intel_icd',
44 input : 'anv_icd.py',
45 output : 'intel_icd.@0@.json'.format(host_machine.cpu()),
46 command : [
47 prog_python2, '@INPUT@',
48 '--lib-path', join_paths(get_option('prefix'), get_option('libdir')),
49 '--out', '@OUTPUT@',
50 ],
51 depend_files : files('anv_extensions.py'),
52 build_by_default : true,
53 install_dir : with_vulkan_icd_dir,
54 install : true,
55 )
56
57 dev_icd = custom_target(
58 'dev_icd',
59 input : 'anv_icd.py',
60 output : 'dev_icd.@0@.json'.format(host_machine.cpu()),
61 command : [
62 prog_python2, '@INPUT@', '--lib-path', meson.current_build_dir(),
63 '--out', '@OUTPUT@'
64 ],
65 depend_files : files('anv_extensions.py'),
66 build_by_default : true,
67 install : false,
68 )
69
70 # TODO: workaround for anv_entrypoints combining the .h and .c files in it's
71 # output. See issue #2346
72 block_entrypoints = custom_target(
73 'block_entrypoints',
74 command : [prog_touch, '@OUTPUT@'],
75 output : 'null',
76 depends : anv_entrypoints,
77 )
78
79 libanv_gen_libs = []
80 anv_gen_files = files(
81 'genX_blorp_exec.c',
82 'genX_cmd_buffer.c',
83 'genX_gpu_memcpy.c',
84 'genX_pipeline.c',
85 'genX_query.c',
86 'genX_state.c',
87 )
88 foreach g : [['70', ['gen7_cmd_buffer.c']], ['75', ['gen7_cmd_buffer.c']],
89 ['80', ['gen8_cmd_buffer.c']], ['90', ['gen8_cmd_buffer.c']],
90 ['100', ['gen8_cmd_buffer.c']]]
91 _gen = g[0]
92 _files = g[1]
93 _lib = static_library(
94 'libanv_gen@0@'.format(_gen),
95 [anv_gen_files, _files, block_entrypoints],
96 include_directories : [
97 inc_common, inc_compiler, inc_drm_uapi, inc_intel, inc_vulkan_util,
98 inc_vulkan_wsi,
99 ],
100 c_args : [
101 c_vis_args, no_override_init_args, '-msse2',
102 '-DGEN_VERSIONx10=@0@'.format(_gen),
103 ],
104 dependencies : [dep_libdrm, dep_valgrind],
105 )
106 libanv_gen_libs += _lib
107 endforeach
108
109 libanv_files = files(
110 'anv_allocator.c',
111 'anv_batch_chain.c',
112 'anv_blorp.c',
113 'anv_cmd_buffer.c',
114 'anv_debug_report.c',
115 'anv_descriptor_set.c',
116 'anv_device.c',
117 'anv_dump.c',
118 'anv_formats.c',
119 'anv_genX.h',
120 'anv_image.c',
121 'anv_intel.c',
122 'anv_nir.h',
123 'anv_nir_apply_pipeline_layout.c',
124 'anv_nir_lower_input_attachments.c',
125 'anv_nir_lower_multiview.c',
126 'anv_nir_lower_push_constants.c',
127 'anv_nir_lower_ycbcr_textures.c',
128 'anv_pass.c',
129 'anv_pipeline.c',
130 'anv_pipeline_cache.c',
131 'anv_private.h',
132 'anv_queue.c',
133 'anv_util.c',
134 'anv_wsi.c',
135 'vk_format_info.h',
136 )
137
138 anv_deps = []
139 anv_flags = []
140
141 if with_platform_x11
142 anv_deps += dep_xcb_dri3
143 anv_flags += [
144 '-DVK_USE_PLATFORM_XCB_KHR',
145 '-DVK_USE_PLATFORM_XLIB_KHR',
146 ]
147 libanv_files += files('anv_wsi_x11.c')
148 endif
149
150 if with_platform_wayland
151 anv_deps += dep_wayland_client
152 anv_flags += '-DVK_USE_PLATFORM_WAYLAND_KHR'
153 libanv_files += files('anv_wsi_wayland.c')
154 endif
155
156 libanv_common = static_library(
157 'anv_common',
158 [libanv_files, anv_entrypoints, anv_extensions_c, nir_opcodes_h],
159 include_directories : [
160 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
161 inc_vulkan_wsi,
162 ],
163 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
164 dependencies : [dep_valgrind, anv_deps, dep_libdrm],
165 )
166
167 libvulkan_intel = shared_library(
168 'vulkan_intel',
169 [files('anv_gem.c'), block_entrypoints],
170 include_directories : [
171 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
172 inc_vulkan_wsi,
173 ],
174 link_whole : [libanv_common, libanv_gen_libs],
175 link_with : [
176 libintel_compiler, libintel_common, libisl, libblorp, libvulkan_util,
177 libvulkan_wsi, libnir, libmesa_util,
178 ],
179 dependencies : [dep_libdrm, dep_thread, dep_dl, dep_m, anv_deps, dep_valgrind],
180 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
181 link_args : ['-Wl,--build-id=sha1', ld_args_bsymbolic, ld_args_gc_sections],
182 install : true,
183 )
184
185 if with_tests
186 libvulkan_intel_test = static_library(
187 'vulkan_intel_test',
188 [files('anv_gem_stubs.c'), block_entrypoints],
189 include_directories : [
190 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
191 inc_vulkan_wsi,
192 ],
193 link_whole : libanv_common,
194 link_with : [
195 libanv_gen_libs, libintel_compiler, libintel_common, libisl, libblorp,
196 libvulkan_util, libvulkan_wsi, libmesa_util,
197 ],
198 dependencies : [
199 dep_libdrm, dep_thread, dep_dl, dep_m, anv_deps, dep_valgrind,
200 idep_nir,
201 ],
202 c_args : [c_vis_args, no_override_init_args, '-msse2', anv_flags],
203 )
204
205 foreach t : ['block_pool_no_free', 'state_pool_no_free',
206 'state_pool_free_list_only', 'state_pool']
207 test(
208 'anv_@0@'.format(t),
209 executable(
210 t,
211 ['tests/@0@.c'.format(t), dummy_cpp, block_entrypoints],
212 link_with : libvulkan_intel_test,
213 dependencies : [dep_libdrm, dep_thread, dep_m, dep_valgrind],
214 include_directories : [
215 inc_common, inc_intel, inc_compiler, inc_vulkan_util, inc_vulkan_wsi,
216 ],
217 )
218 )
219 endforeach
220 endif