asahi: drop trivial depends

meson can infer since these are inputs.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33682>
This commit is contained in:
Alyssa Rosenzweig 2025-01-17 11:28:50 -05:00 committed by Marge Bot
parent 5d1f69e250
commit de424846f0
2 changed files with 1 additions and 3 deletions

View file

@ -54,7 +54,6 @@ libagx_shaders = custom_target(
input : libagx_spv,
output : ['libagx_shaders.h', 'libagx_shaders.c'],
command : [prog_asahi_clc, libagx_spv, '@OUTPUT0@', '@OUTPUT1@'],
depends : [prog_asahi_clc],
)
idep_libagx_shaders_h = declare_dependency(

View file

@ -28,7 +28,7 @@ libagx_spv = custom_target(
'-I' + join_paths(meson.current_build_dir(), '../genxml'),
'-fmacro-prefix-map=@0@='.format(relative_dir),
],
depends : [prog_mesa_clc, agx_pack],
depends : [agx_pack],
depfile : 'libagx_shaders.h.d',
)
@ -36,7 +36,6 @@ libagx = custom_target(
input : libagx_spv,
output : ['libagx.cpp', 'libagx.h'],
command : [prog_vtn_bindgen2, libagx_spv, '@OUTPUT0@', '@OUTPUT1@'],
depends : [prog_vtn_bindgen2],
)
idep_libagx = declare_dependency(