diff options
author | Eric Engestrom <[email protected]> | 2019-07-23 11:25:53 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-08-03 00:08:37 +0000 |
commit | 178811d8f6a2a449069830b38d3feae0d34f962a (patch) | |
tree | 0aa2328d06cf2fecf30aa59f53ff71c2cb87adc3 /src/gallium/tests | |
parent | d2d85b950d78c553b2694cda9ef0cc7bf9a0f737 (diff) |
meson: drop unused dep_{thread,dl}
Unused as of last commit.
Signed-off-by: Eric Engestrom <[email protected]>
Acked-by: Eric Anholt <[email protected]>
Tested-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/gallium/tests')
-rw-r--r-- | src/gallium/tests/graw/meson.build | 2 | ||||
-rw-r--r-- | src/gallium/tests/trivial/meson.build | 2 | ||||
-rw-r--r-- | src/gallium/tests/unit/meson.build | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/tests/graw/meson.build b/src/gallium/tests/graw/meson.build index f8ed2bce3bc..9a1f4e7db00 100644 --- a/src/gallium/tests/graw/meson.build +++ b/src/gallium/tests/graw/meson.build @@ -31,6 +31,6 @@ foreach t : progs t + '.c', include_directories : inc_common, link_with : [libgraw, libgraw_util, libgallium], - dependencies : [dep_m, dep_thread, idep_mesautil], + dependencies : [dep_m, idep_mesautil], ) endforeach diff --git a/src/gallium/tests/trivial/meson.build b/src/gallium/tests/trivial/meson.build index 7d8d430a7e2..bc6fbac47a9 100644 --- a/src/gallium/tests/trivial/meson.build +++ b/src/gallium/tests/trivial/meson.build @@ -24,7 +24,7 @@ foreach t : ['compute', 'tri', 'quad-tex'] '@[email protected]'.format(t), include_directories : inc_common, link_with : [libgallium, libpipe_loader_dynamic], - dependencies : [idep_mesautil, dep_thread], + dependencies : idep_mesautil, install : false, ) endforeach diff --git a/src/gallium/tests/unit/meson.build b/src/gallium/tests/unit/meson.build index 75ad10852fc..d4f3aed0877 100644 --- a/src/gallium/tests/unit/meson.build +++ b/src/gallium/tests/unit/meson.build @@ -25,7 +25,7 @@ foreach t : ['pipe_barrier_test', 'u_cache_test', 'u_half_test', '@[email protected]'.format(t), include_directories : inc_common, link_with : libgallium, - dependencies : [idep_mesautil, dep_thread], + dependencies : idep_mesautil, install : false, ) # u_cache_test is slow, and translate_test fails. |