101e04c3fSmrg# Copyright © 2017 Intel Corporation 201e04c3fSmrg 301e04c3fSmrg# Permission is hereby granted, free of charge, to any person obtaining a copy 401e04c3fSmrg# of this software and associated documentation files (the "Software"), to deal 501e04c3fSmrg# in the Software without restriction, including without limitation the rights 601e04c3fSmrg# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 701e04c3fSmrg# copies of the Software, and to permit persons to whom the Software is 801e04c3fSmrg# furnished to do so, subject to the following conditions: 901e04c3fSmrg 1001e04c3fSmrg# The above copyright notice and this permission notice shall be included in 1101e04c3fSmrg# all copies or substantial portions of the Software. 1201e04c3fSmrg 1301e04c3fSmrg# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1401e04c3fSmrg# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1501e04c3fSmrg# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 1601e04c3fSmrg# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1701e04c3fSmrg# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 1801e04c3fSmrg# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 1901e04c3fSmrg# SOFTWARE. 2001e04c3fSmrg 2101e04c3fSmrgvk_api_xml = files('registry/vk.xml') 227ec681f3Smrgvulkan_icd_symbols = files('vulkan-icd-symbols.txt') 2301e04c3fSmrg 247ec681f3Smrginc_vulkan_util = include_directories('util') 2501e04c3fSmrg 268a1362adSmayavulkan_wsi_args = [] 278a1362adSmayavulkan_wsi_deps = [] 288a1362adSmayavulkan_wsi_list = [] 298a1362adSmaya 308a1362adSmayaif with_platform_x11 318a1362adSmaya vulkan_wsi_deps += [ 328a1362adSmaya dep_xcb, 338a1362adSmaya dep_x11_xcb, 348a1362adSmaya dep_xcb_dri3, 358a1362adSmaya dep_xcb_present, 368a1362adSmaya dep_xcb_sync, 377ec681f3Smrg dep_xcb_xrandr, 387ec681f3Smrg dep_xcb_shm, 398a1362adSmaya dep_xshmfence, 408a1362adSmaya ] 418a1362adSmaya vulkan_wsi_list += ['xcb', 'x11'] 428a1362adSmayaendif 438a1362adSmayaif with_platform_wayland 448a1362adSmaya vulkan_wsi_deps += dep_wayland_client 458a1362adSmaya vulkan_wsi_list += ['wayland'] 468a1362adSmayaendif 477ec681f3Smrgif system_has_kms_drm and not with_platform_android 488a1362adSmaya vulkan_wsi_deps += [dep_libdrm] 498a1362adSmaya vulkan_wsi_list += ['drm'] 508a1362adSmayaendif 518a1362adSmayaif with_xlib_lease 527ec681f3Smrg vulkan_wsi_deps += [dep_xlib_xrandr] 538a1362adSmaya vulkan_wsi_list += ['xlib_xrandr'] 548a1362adSmayaendif 558a1362adSmaya 568a1362adSmaya 5701e04c3fSmrgsubdir('util') 5801e04c3fSmrgsubdir('wsi') 597ec681f3Smrgif with_vulkan_overlay_layer 608a1362adSmaya subdir('overlay-layer') 618a1362adSmayaendif 627ec681f3Smrgif with_vulkan_device_select_layer 637ec681f3Smrg subdir('device-select-layer') 647ec681f3Smrgendif 65