summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-07-23 11:25:53 +0100
committerEric Engestrom <[email protected]>2019-08-03 00:08:37 +0000
commit178811d8f6a2a449069830b38d3feae0d34f962a (patch)
tree0aa2328d06cf2fecf30aa59f53ff71c2cb87adc3 /src/mesa
parentd2d85b950d78c553b2694cda9ef0cc7bf9a0f737 (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/mesa')
-rw-r--r--src/mesa/state_tracker/tests/meson.build8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/state_tracker/tests/meson.build b/src/mesa/state_tracker/tests/meson.build
index d550f01c7fc..5ef884cb1ce 100644
--- a/src/mesa/state_tracker/tests/meson.build
+++ b/src/mesa/state_tracker/tests/meson.build
@@ -22,7 +22,7 @@ libmesa_st_test_common = static_library(
'mesa_st_test_common',
['st_tests_common.cpp', ir_expression_operation_h],
include_directories : inc_common,
- dependencies : [dep_thread, idep_gtest],
+ dependencies : idep_gtest,
)
test(
@@ -34,7 +34,7 @@ test(
link_with : [
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
],
- dependencies : [dep_thread, idep_mesautil],
+ dependencies : idep_mesautil,
),
suite : ['st_mesa'],
)
@@ -48,7 +48,7 @@ test(
link_with : [
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
],
- dependencies : [idep_mesautil, idep_gtest, dep_thread],
+ dependencies : [idep_mesautil, idep_gtest],
),
suite : ['st_mesa'],
)
@@ -62,7 +62,7 @@ test(
link_with : [
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
],
- dependencies : [idep_mesautil, idep_gtest, dep_thread],
+ dependencies : [idep_mesautil, idep_gtest],
),
suite : ['st_mesa'],
)