diff options
Diffstat (limited to 'src/gallium/tests')
-rw-r--r-- | src/gallium/tests/graw/meson.build | 4 | ||||
-rw-r--r-- | src/gallium/tests/trivial/meson.build | 4 | ||||
-rw-r--r-- | src/gallium/tests/unit/meson.build | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/gallium/tests/graw/meson.build b/src/gallium/tests/graw/meson.build index fd416c16287..f8ed2bce3bc 100644 --- a/src/gallium/tests/graw/meson.build +++ b/src/gallium/tests/graw/meson.build @@ -30,7 +30,7 @@ foreach t : progs 'graw-' + t, t + '.c', include_directories : inc_common, - link_with : [libgraw, libgraw_util, libmesa_util, libgallium], - dependencies : [dep_m, dep_thread] + link_with : [libgraw, libgraw_util, libgallium], + dependencies : [dep_m, dep_thread, idep_mesautil], ) endforeach diff --git a/src/gallium/tests/trivial/meson.build b/src/gallium/tests/trivial/meson.build index 1f912d5aa46..7d8d430a7e2 100644 --- a/src/gallium/tests/trivial/meson.build +++ b/src/gallium/tests/trivial/meson.build @@ -23,8 +23,8 @@ foreach t : ['compute', 'tri', 'quad-tex'] t, '@[email protected]'.format(t), include_directories : inc_common, - link_with : [libmesa_util, libgallium, libpipe_loader_dynamic], - dependencies : dep_thread, + link_with : [libgallium, libpipe_loader_dynamic], + dependencies : [idep_mesautil, dep_thread], install : false, ) endforeach diff --git a/src/gallium/tests/unit/meson.build b/src/gallium/tests/unit/meson.build index eacbd39b882..75ad10852fc 100644 --- a/src/gallium/tests/unit/meson.build +++ b/src/gallium/tests/unit/meson.build @@ -24,8 +24,8 @@ foreach t : ['pipe_barrier_test', 'u_cache_test', 'u_half_test', t, '@[email protected]'.format(t), include_directories : inc_common, - link_with : [libgallium, libmesa_util], - dependencies : [dep_thread], + link_with : libgallium, + dependencies : [idep_mesautil, dep_thread], install : false, ) # u_cache_test is slow, and translate_test fails. |