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