From 657080fe5988d14ee47444675173fb84ed02f695 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 11 Aug 2025 15:02:47 +0200 Subject: [PATCH] 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: --- src/nouveau/vulkan/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/nouveau/vulkan/meson.build b/src/nouveau/vulkan/meson.build index 5897830bcc5..030b3e4ace8 100644 --- a/src/nouveau/vulkan/meson.build +++ b/src/nouveau/vulkan/meson.build @@ -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