1# Copyright © 2017 Intel Corporation 2 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: 9 10# The above copyright notice and this permission notice shall be included in 11# all copies or substantial portions of the Software. 12 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 19# SOFTWARE. 20 21inc_gbm = include_directories('.', 'main', 'backends/dri') 22 23files_gbm = files( 24 'main/backend.c', 25 'main/backend.h', 26 'main/gbm.c', 27 'main/gbm.h', 28 'main/gbmint.h', 29) 30deps_gbm = [] 31args_gbm = [ 32 '-DDEFAULT_BACKENDS_PATH="@0@"'.format(gbm_backends_path), 33] 34deps_gbm = [] 35incs_gbm = [ 36 include_directories('main'), inc_include, inc_src, inc_loader, 37] 38 39if with_dri2 40 files_gbm += files('backends/dri/gbm_dri.c', 'backends/dri/gbm_driint.h') 41 deps_gbm += dep_libdrm # TODO: pthread-stubs 42endif 43if with_platform_wayland 44 deps_gbm += dep_wayland_server 45 incs_gbm += inc_wayland_drm 46endif 47 48libgbm_name = 'gbm' 49 50if with_platform_android and get_option('platform-sdk-version') >= 30 51 libgbm_name = 'gbm_mesa' 52endif 53 54libgbm = shared_library( 55 libgbm_name, 56 files_gbm, 57 include_directories : incs_gbm, 58 c_args : [args_gbm], 59 link_args : [ld_args_gc_sections], 60 link_with : libloader, 61 dependencies : [deps_gbm, dep_dl, dep_thread, idep_mesautil, idep_xmlconfig], 62 gnu_symbol_visibility : 'hidden', 63 version : '1.0.0', 64 install : true, 65) 66 67if with_tests 68 abi_check = executable('gbm_abi_check', 'main/gbm_abi_check.c') 69 test('gbm-abi-check', abi_check, suite : ['gbm']) 70endif 71 72install_headers('main/gbm.h') 73 74pkg.generate( 75 name : 'gbm', 76 filebase : 'gbm', 77 description : 'Mesa gbm library', 78 version : meson.project_version(), 79 libraries : libgbm, 80 libraries_private : gbm_priv_libs, 81 variables : ['gbmbackendspath=' + gbm_backends_path], 82) 83 84if with_symbols_check 85 test( 86 'gbm-symbols-check', 87 symbols_check, 88 args : [ 89 '--lib', libgbm, 90 '--symbols-file', files('gbm-symbols.txt'), 91 symbols_check_args, 92 ], 93 suite : ['gbm'], 94 ) 95endif 96