1# Copyright © 2019 Broadcom 2# Copyright © 2020 Intel Corporation 3# SPDX-License-Identifier: MIT 4 5drm_shim = static_library( 6 'drm_shim', 7 [ 8 'device.c', 9 'drm_shim.c', 10 ], 11 include_directories: [inc_include, inc_src], 12 dependencies: [dep_libdrm, idep_mesautil, dep_dl], 13 gnu_symbol_visibility : 'hidden', 14) 15dep_drm_shim = declare_dependency( 16 link_with: drm_shim, 17 dependencies: dep_libdrm, 18) 19