1 # Copyright © 2017-2018 Intel Corporation
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:
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
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
21 libdrm_intel = library(
25 'intel_bufmgr.c', 'intel_bufmgr_fake.c', 'intel_bufmgr_gem.c',
26 'intel_decode.c', 'mm.c', 'intel_chipset.c',
30 include_directories : [inc_root, inc_drm],
32 dependencies : [dep_pciaccess, dep_pthread_stubs, dep_rt, dep_valgrind, dep_atomic_ops],
33 c_args : libdrm_c_args,
38 ext_libdrm_intel = declare_dependency(
39 link_with : [libdrm, libdrm_intel],
40 include_directories : [inc_drm, include_directories('.')],
44 'intel_bufmgr.h', 'intel_aub.h', 'intel_debug.h',
49 name : 'libdrm_intel',
50 libraries : libdrm_intel,
51 subdirs : ['.', 'libdrm'],
52 version : meson.project_version(),
54 description : 'Userspace interface to intel kernel DRM services',
57 test_decode = executable(
59 files('test_decode.c'),
60 include_directories : [inc_root, inc_drm],
61 link_with : [libdrm, libdrm_intel],
62 c_args : libdrm_c_args,
67 find_program('tests/gen4-3d.batch.sh'),
68 workdir : meson.current_build_dir(),
72 find_program('tests/gm45-3d.batch.sh'),
73 workdir : meson.current_build_dir(),
77 find_program('tests/gen5-3d.batch.sh'),
78 workdir : meson.current_build_dir(),
82 find_program('tests/gen6-3d.batch.sh'),
83 workdir : meson.current_build_dir(),
87 find_program('tests/gen7-3d.batch.sh'),
88 workdir : meson.current_build_dir(),
92 find_program('tests/gen7-2d-copy.batch.sh'),
93 workdir : meson.current_build_dir(),
97 'intel-symbols-check',
100 '--lib', libdrm_intel,
101 '--symbols-file', files('intel-symbols.txt'),
102 '--nm', prog_nm.path(),