aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLogan Chien <loganchien@google.com>2018-04-26 15:38:29 +0800
committerLogan Chien <loganchien@google.com>2018-09-20 10:47:54 +0800
commit20ccec25432c6ea2d91e94496df01a96da1751b0 (patch)
tree270b121fc7d4574ac34a6c46c7f87f4f2eeb10ba /tests
parent9a8dc33f2c7306de76f6cc0a2c968ad7aa26563b (diff)
downloaddevice_generic_goldfish-opengl-20ccec25432c6ea2d91e94496df01a96da1751b0.tar.gz
device_generic_goldfish-opengl-20ccec25432c6ea2d91e94496df01a96da1751b0.tar.bz2
device_generic_goldfish-opengl-20ccec25432c6ea2d91e94496df01a96da1751b0.zip
Deprecate <cutils/log.h> and <utils/Log.h>
This commit replaces <cutils/log.h> and <utils/Log.h> with <log/log.h>. Background: <cutils/log.h> has been moved to <log/log.h> for a while. Both <cutils/log.h> and <utils/Log.h> simply includes <log/log.h> for backward compatibility. This commit is a part of the effort to remove <cutils/log.h> and <utils/Log.h> from the source tree eventually. Bug: 78370064 Test: lunch aosp_arm-userdebug && make && \ cd device/generic/goldfish-opengl && mma Change-Id: Ia80adc525617d7099e9f354cef035386ec510262
Diffstat (limited to 'tests')
-rw-r--r--tests/gles_android_wrapper/ServerConnection.cpp2
-rw-r--r--tests/gles_android_wrapper/egl.cpp2
-rw-r--r--tests/gles_android_wrapper/gles.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/gles_android_wrapper/ServerConnection.cpp b/tests/gles_android_wrapper/ServerConnection.cpp
index ff4e3900..ea84aa22 100644
--- a/tests/gles_android_wrapper/ServerConnection.cpp
+++ b/tests/gles_android_wrapper/ServerConnection.cpp
@@ -18,7 +18,7 @@
#include "ServerConnection.h"
#include "TcpStream.h"
#include "QemuPipeStream.h"
-#include <cutils/log.h>
+#include <log/log.h>
#include "ThreadInfo.h"
gl_client_context_t *ServerConnection::s_getGlContext()
diff --git a/tests/gles_android_wrapper/egl.cpp b/tests/gles_android_wrapper/egl.cpp
index cc9ab0bd..33090d5d 100644
--- a/tests/gles_android_wrapper/egl.cpp
+++ b/tests/gles_android_wrapper/egl.cpp
@@ -27,7 +27,7 @@
#include <dlfcn.h>
#include "egl_dispatch.h"
#include "egl_ftable.h"
-#include <cutils/log.h>
+#include <log/log.h>
#include "ServerConnection.h"
#include "ThreadInfo.h"
#include <pthread.h>
diff --git a/tests/gles_android_wrapper/gles.cpp b/tests/gles_android_wrapper/gles.cpp
index c0949c8c..6a0087ed 100644
--- a/tests/gles_android_wrapper/gles.cpp
+++ b/tests/gles_android_wrapper/gles.cpp
@@ -19,7 +19,7 @@
#include "gles_dispatch.h"
#include "gles_ftable.h"
#include <EGL/egl.h>
-#include <cutils/log.h>
+#include <log/log.h>
static struct gles_dispatch *s_dispatch = NULL;