mesa: Don't make building tests conditional on building DRI drivers

These tests should work, and be built, even if you're only building
gallium drivers.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8353>
This commit is contained in:
Adam Jackson 2021-01-06 13:15:20 -05:00
parent df4a7d67aa
commit a7762daa67

View file

@ -761,6 +761,6 @@ subdir('drivers/dri')
if with_glx == 'xlib'
subdir('drivers/x11')
endif
if with_tests and dri_drivers != []
if with_tests
subdir('main/tests')
endif