Merge "Replace cutils/log.h and log/logger.h with android/log.h or log/log.h (part deux)" am: 2225a0640b

am: d1740f0f5b

Change-Id: I78430cd21cf1186ccc2b48ee4ee8a9b07decde5e
This commit is contained in:
Mark Salyzyn
2017-01-12 15:46:20 +00:00
committed by android-build-merger
8 changed files with 27 additions and 21 deletions

View File

@@ -20,7 +20,7 @@
#include <vector> #include <vector>
#include <android/log.h> #include <log/log.h>
#include <utils/Log.h> #include <utils/Log.h>
#include "jni.h" #include "jni.h"

View File

@@ -15,10 +15,11 @@
*/ */
#define LOG_TAG "OpenGLRenderer" #define LOG_TAG "OpenGLRenderer"
#include "android/log.h"
#include "jni.h" #include "jni.h"
#include "GraphicsJNI.h" #include "GraphicsJNI.h"
#include "core_jni_helpers.h" #include "core_jni_helpers.h"
#include "log/log.h"
#include "Animator.h" #include "Animator.h"
#include "Interpolator.h" #include "Interpolator.h"

View File

@@ -18,6 +18,8 @@
#include <log/log_event_list.h> #include <log/log_event_list.h>
#include <log/log.h>
#include "JNIHelp.h" #include "JNIHelp.h"
#include "core_jni_helpers.h" #include "core_jni_helpers.h"
#include "jni.h" #include "jni.h"

View File

@@ -13,16 +13,17 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#include "JankTracker.h" #include "JankTracker.h"
#include <errno.h> #include <errno.h>
#include <inttypes.h> #include <inttypes.h>
#include <sys/mman.h>
#include <algorithm> #include <algorithm>
#include <cmath> #include <cmath>
#include <cstdio> #include <cstdio>
#include <limits> #include <limits>
#include <sys/mman.h>
#include <cutils/ashmem.h> #include <cutils/ashmem.h>
#include <log/log.h> #include <log/log.h>

View File

@@ -20,9 +20,9 @@
#include <algorithm> #include <algorithm>
#include <cstdlib> #include <cstdlib>
#include <log/log.h>
#include <cutils/compiler.h> #include <cutils/compiler.h>
#include <cutils/properties.h> #include <cutils/properties.h>
#include <log/log.h>
namespace android { namespace android {
namespace uirenderer { namespace uirenderer {

View File

@@ -16,16 +16,18 @@
#include "EglManager.h" #include "EglManager.h"
#include <string>
#include "utils/StringUtils.h"
#include <cutils/properties.h>
#include <log/log.h>
#include "Caches.h" #include "Caches.h"
#include "DeviceInfo.h" #include "DeviceInfo.h"
#include "Properties.h" #include "Properties.h"
#include "RenderThread.h" #include "RenderThread.h"
#include "renderstate/RenderState.h" #include "renderstate/RenderState.h"
#include "utils/StringUtils.h"
#include <cutils/log.h>
#include <cutils/properties.h>
#include <EGL/eglext.h> #include <EGL/eglext.h>
#include <string>
#define GLES_VERSION 2 #define GLES_VERSION 2

View File

@@ -22,8 +22,8 @@
#include "renderthread/RenderProxy.h" #include "renderthread/RenderProxy.h"
#include "renderthread/RenderTask.h" #include "renderthread/RenderTask.h"
#include <cutils/log.h>
#include <gui/Surface.h> #include <gui/Surface.h>
#include <log/log.h>
#include <ui/PixelFormat.h> #include <ui/PixelFormat.h>
using namespace android; using namespace android;

View File

@@ -17,30 +17,30 @@
#define LOG_TAG "BatteryStatsService" #define LOG_TAG "BatteryStatsService"
//#define LOG_NDEBUG 0 //#define LOG_NDEBUG 0
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <semaphore.h>
#include <stddef.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <android_runtime/AndroidRuntime.h> #include <android_runtime/AndroidRuntime.h>
#include <jni.h> #include <jni.h>
#include <ScopedLocalRef.h> #include <ScopedLocalRef.h>
#include <ScopedPrimitiveArray.h> #include <ScopedPrimitiveArray.h>
#include <cutils/log.h> #include <log/log.h>
#include <utils/misc.h> #include <utils/misc.h>
#include <utils/Log.h> #include <utils/Log.h>
#include <hardware/hardware.h> #include <hardware/hardware.h>
#include <hardware/power.h> #include <hardware/power.h>
#include <suspend/autosuspend.h> #include <suspend/autosuspend.h>
#include <inttypes.h>
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>
#include <semaphore.h>
#include <stddef.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
namespace android namespace android
{ {