nvk: drop some needless definitions and deps

We already have these two:
- dep_android comes from vulkan_lite_runtime_deps, through
  idep_vulkan_runtime.
- VK_USE_PLATFORM_ANDROID_KHR comes from idep_vulkan_wsi_defines,
  through idep_vulkan_runtime.

So let's remove these two, as they don't really add anything new.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36716>
This commit is contained in:
Erik Faye-Lund 2025-08-11 15:02:47 +02:00 committed by Marge Bot
parent 3bd0badd3a
commit 657080fe59

View file

@ -132,8 +132,6 @@ nvk_deps = [
nvk_flags = []
if with_platform_android
nvk_deps += [dep_android]
nvk_flags += '-DVK_USE_PLATFORM_ANDROID_KHR'
nvk_files += files('nvk_android.c')
endif