Path: blob/21.2-virgl/src/etnaviv/drm/meson.build
4564 views
# Copyright © 2019 Purism SPC12# Permission is hereby granted, free of charge, to any person obtaining a copy3# of this software and associated documentation files (the "Software"), to deal4# in the Software without restriction, including without limitation the rights5# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell6# copies of the Software, and to permit persons to whom the Software is7# furnished to do so, subject to the following conditions:89# The above copyright notice and this permission notice shall be included in10# all copies or substantial portions of the Software.1112# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR13# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,14# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE15# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,17# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE18# SOFTWARE.1920libetnaviv_drm_files = files(21'etnaviv_device.c',22'etnaviv_gpu.c',23'etnaviv_bo.c',24'etnaviv_bo_cache.c',25'etnaviv_perfmon.c',26'etnaviv_pipe.c',27'etnaviv_cmd_stream.c',28'etnaviv_drmif.h',29'etnaviv_priv.h',30)3132libetnaviv_drm = static_library(33'etnaviv_drm',34libetnaviv_drm_files,35include_directories : [36inc_etnaviv,37inc_include,38inc_src,39inc_mapi,40inc_mesa,41inc_gallium,42inc_gallium_aux,43],44c_args : [no_override_init_args],45gnu_symbol_visibility : 'hidden',46dependencies : [47dep_libdrm,48dep_valgrind,49],50build_by_default : false,51)5253if with_tools.contains('etnaviv')54subdir('tests')55endif565758