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