util: promote u_debug_memory.c to src/util

When os_memory_debug.h was promoted to src/util, this source-file on
which it depends on when the debug-flag is set on windows was left
out. So let's move this also.

It doesn't seem there's any way of triggering this issue right now, but
it seems better to correct this to avoid this from biting us in the ass
in the future.

Fixes: 88c4680b5a ("util: promote u_memory to src/util")
Reviewed-by: Dylan Baker <dylan@pnwbakers>
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3844>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3844>
This commit is contained in:
Erik Faye-Lund 2020-02-10 13:08:28 +01:00
parent 8021daeb1f
commit 2e3318b151
5 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,6 @@ C_SOURCES := \
util/u_debug_flush.h \
util/u_debug_image.c \
util/u_debug_image.h \
util/u_debug_memory.c \
util/u_debug_refcnt.c \
util/u_debug_refcnt.h \
util/u_debug_stack.c \

View File

@ -244,7 +244,6 @@ files_libgallium = files(
'util/u_debug_flush.h',
'util/u_debug_image.c',
'util/u_debug_image.h',
'util/u_debug_memory.c',
'util/u_debug_refcnt.c',
'util/u_debug_refcnt.h',
'util/u_debug_stack.c',

View File

@ -108,6 +108,7 @@ MESA_UTIL_FILES := \
u_vector.h \
u_debug.c \
u_debug.h \
u_debug_memory.c \
u_cpu_detect.c \
u_cpu_detect.h \
os_memory_aligned.h \

View File

@ -113,6 +113,7 @@ files_mesa_util = files(
'u_mm.h',
'u_debug.c',
'u_debug.h',
'u_debug_memory.c',
'u_cpu_detect.c',
'u_cpu_detect.h',
'vma.c',