2017-09-13 12:46:13 -06:00
|
|
|
# Copyright © 2017-2018 Intel Corporation
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2021-03-09 01:14:36 -07:00
|
|
|
libdrm_tegra = library(
|
2017-09-13 12:46:13 -06:00
|
|
|
'drm_tegra',
|
2021-07-09 12:21:35 -06:00
|
|
|
[
|
|
|
|
files(
|
2021-07-09 12:45:20 -06:00
|
|
|
'channel.c', 'job.c', 'private.h', 'pushbuf.c', 'syncpt.c', 'tegra.c'
|
2021-07-09 12:21:35 -06:00
|
|
|
),
|
|
|
|
config_file
|
|
|
|
],
|
2017-09-13 12:46:13 -06:00
|
|
|
include_directories : [inc_root, inc_drm],
|
|
|
|
link_with : libdrm,
|
2021-09-08 03:14:20 -06:00
|
|
|
dependencies : [dep_threads, dep_atomic_ops],
|
2018-09-12 14:24:12 -06:00
|
|
|
c_args : libdrm_c_args,
|
2022-01-19 11:42:20 -07:00
|
|
|
gnu_symbol_visibility : 'hidden',
|
2017-09-13 12:46:13 -06:00
|
|
|
version : '0.0.0',
|
|
|
|
install : true,
|
|
|
|
)
|
|
|
|
|
|
|
|
ext_libdrm_tegra = declare_dependency(
|
|
|
|
link_with : [libdrm, libdrm_tegra],
|
|
|
|
include_directories : [inc_drm, include_directories('.')],
|
|
|
|
)
|
|
|
|
|
2021-11-17 13:57:54 -07:00
|
|
|
if meson.version().version_compare('>= 0.54.0')
|
|
|
|
meson.override_dependency('libdrm_tegra', ext_libdrm_tegra)
|
|
|
|
endif
|
|
|
|
|
2017-09-13 12:46:13 -06:00
|
|
|
install_headers('tegra.h', subdir : 'libdrm')
|
|
|
|
|
|
|
|
pkg.generate(
|
2022-01-19 12:14:17 -07:00
|
|
|
libdrm_tegra,
|
2017-09-13 12:46:13 -06:00
|
|
|
name : 'libdrm_tegra',
|
|
|
|
subdirs : ['.', 'libdrm'],
|
|
|
|
description : 'Userspace interface to Tegra kernel DRM services',
|
|
|
|
)
|
|
|
|
|
|
|
|
test(
|
2019-10-23 16:32:55 -06:00
|
|
|
'tegra-symbols-check',
|
|
|
|
symbols_check,
|
|
|
|
args : [
|
|
|
|
'--lib', libdrm_tegra,
|
|
|
|
'--symbols-file', files('tegra-symbols.txt'),
|
2024-03-28 17:51:52 -06:00
|
|
|
'--nm', prog_nm.full_path(),
|
2019-10-23 16:32:55 -06:00
|
|
|
],
|
2017-09-13 12:46:13 -06:00
|
|
|
)
|