Added few more stubs so that control reaches to DestroyDevice().
[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_mapi, inc_mesa, inc_gallium, inc_intel],
47 c_args : [no_override_init_args],
48 gnu_symbol_visibility : 'hidden',
49 link_with : [libisl],
50 dependencies : [dep_expat, dep_libdrm, dep_thread, idep_genxml],
51 )
52
53 libintel_extra_dependencies = []
54 if with_platform_android
55 libintel_extra_dependencies += dep_android
56 endif
57
58 idep_libintel_common = declare_dependency(
59 link_with: [libintel_common],
60 dependencies: [libintel_extra_dependencies],
61 )
62
63 install_intel_gpu_tests = get_option('install-intel-gpu-tests')
64
65 if install_intel_gpu_tests
66 foreach g : [['70', 'gen7'], ['75', 'hsw'], ['80', 'gen8'],
67 ['90', 'gen9'], ['110', 'gen11'], ['120', 'gen12']]
68 executable(
69 'intel_@0@_mi_builder_test'.format(g[1]),
70 files('tests/gen_mi_builder_test.cpp'),
71 cpp_args : [
72 cpp_msvc_compat_args,
73 '-DGEN_VERSIONx10=@0@'.format(g[0])
74 ],
75 gnu_symbol_visibility : 'hidden',
76 include_directories : [inc_include, inc_src, inc_intel],
77 link_with : [libintel_dev],
78 dependencies : [dep_libdrm, idep_gtest, idep_genxml, idep_mesautil],
79 install : install_intel_gpu_tests,
80 )
81 endforeach
82 endif
83
84 if with_tests
85 gentest_xml = files('tests/gentest.xml')
86 _name = 'gentest_pack.h'
87 gentest_pack = custom_target(
88 _name,
89 input : [gen_pack_header_py, gentest_xml],
90 output : _name,
91 command : [prog_python, '@INPUT@'],
92 capture : true,
93 )
94
95 genxml_path = join_paths(meson.source_root(),
96 '@0@'.format(gentest_xml[0]))
97
98 test(
99 'genxml_test',
100 executable(
101 'genxml_test',
102 ['tests/genxml_test.c', gentest_pack],
103 include_directories : [inc_include, inc_src, inc_intel],
104 dependencies : idep_mesautil,
105 link_with : libintel_common,
106 c_args : [
107 '-DGENXML_PATH="@0@"'.format(genxml_path)
108 ],
109 ),
110 args : ['-quiet'],
111 suite : ['intel'],
112 )
113 endif