Path: blob/21.2-virgl/src/freedreno/drm/meson.build
4564 views
# Copyright © 2018 Rob Clark12# 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.1920libfreedreno_drm_files = files(21'freedreno_bo.c',22'freedreno_bo_cache.c',23'freedreno_device.c',24'freedreno_drmif.h',25'freedreno_pipe.c',26'freedreno_priv.h',27'freedreno_ringbuffer.c',28'freedreno_ringbuffer.h',29'msm_bo.c',30'msm_device.c',31'msm_pipe.c',32'msm_priv.h',33'msm_ringbuffer.c',34'msm_ringbuffer_sp.c',35)3637libfreedreno_drm = static_library(38'freedreno_drm',39[40libfreedreno_drm_files,41freedreno_xml_header_files,42],43include_directories : [44inc_freedreno,45inc_include,46inc_src,47inc_mapi,48inc_mesa,49inc_gallium,50inc_gallium_aux,51],52c_args : [no_override_init_args],53gnu_symbol_visibility : 'hidden',54dependencies : [55dep_libdrm,56dep_valgrind,57],58build_by_default : false,59)60616263