util: Move u_debug to utils

Tested-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
Dylan Baker 2018-10-01 11:55:27 -07:00
parent 2fd5dff7e7
commit 37db383abb
11 changed files with 8 additions and 9 deletions

View File

@ -224,8 +224,6 @@ C_SOURCES := \
util/u_cache.h \
util/u_cpu_detect.c \
util/u_cpu_detect.h \
util/u_debug.c \
util/u_debug.h \
util/u_debug_gallium.h \
util/u_debug_gallium.c \
util/u_debug_describe.c \

View File

@ -244,8 +244,6 @@ files_libgallium = files(
'util/u_cache.h',
'util/u_cpu_detect.c',
'util/u_cpu_detect.h',
'util/u_debug.c',
'util/u_debug.h',
'util/u_debug_gallium.h',
'util/u_debug_gallium.c',
'util/u_debug_describe.c',

View File

@ -34,7 +34,7 @@
#include "pipe/p_config.h"
#include "u_debug.h"
#include "util/u_debug.h"
#include "u_cpu_detect.h"
#include "c11/threads.h"

View File

@ -32,7 +32,7 @@
* @author Jose Fonseca <jfonseca@vmware.com>
*/
#include "u_debug.h"
#include "util/u_debug.h"
#include "u_debug_symbol.h"
#include "u_debug_stack.h"

View File

@ -36,7 +36,7 @@
#include "os/os_thread.h"
#include "util/u_string.h"
#include "u_debug.h"
#include "util/u_debug.h"
#include "u_debug_symbol.h"
#include "u_hash_table.h"

View File

@ -26,7 +26,6 @@
**************************************************************************/
#include "u_debug.h"
#include "u_format_zs.h"
#include "util/u_math.h"

View File

@ -47,7 +47,7 @@
#include <stdio.h>
#include "u_debug.h"
#include "util/u_debug.h"
struct u_log_page;
struct u_log_auto_logger;

View File

@ -68,6 +68,8 @@ MESA_UTIL_FILES := \
u_thread.h \
u_vector.c \
u_vector.h \
u_debug.c \
u_debug.h \
vma.c \
vma.h

View File

@ -92,6 +92,8 @@ files_mesa_util = files(
'u_vector.h',
'u_math.c',
'u_math.h',
'u_debug.c',
'u_debug.h',
'vma.c',
'vma.h',
)