Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 435adfa9 authored by Jiwen Cai's avatar Jiwen Cai Committed by Android (Google) Code Review
Browse files

Merge "Move log tag definition from Android.bp to cpp file."

parents a8cbd474 869c6d0e
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -67,7 +67,6 @@ cc_test {
        "libnativewindow",
        "libnativewindow",
    ],
    ],
    cflags: [
    cflags: [
        "-DLOG_TAG=\"dvr_buffer_queue-test\"",
        "-DTRACE=0",
        "-DTRACE=0",
        "-O0",
        "-O0",
        "-g",
        "-g",
+2 −0
Original line number Original line Diff line number Diff line
@@ -10,6 +10,8 @@
#include <array>
#include <array>
#include <unordered_map>
#include <unordered_map>


#define LOG_TAG "dvr_buffer_queue-test"

#ifndef ALOGD
#ifndef ALOGD
#define ALOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
#define ALOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
#endif
#endif