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

Commit 5ee1d664 authored by Brett Chabot's avatar Brett Chabot Committed by Jerome Gaillard
Browse files

Build and potentially register Trace for host.

Test: tools/test/simulated_device/ctesque/run_tests_host.sh
Change-Id: If8b715f49752bf0aedb0287a271e9f6d9f8a35e1
parent e7612ba6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ cc_library_shared {
        "android_os_MessageQueue.cpp",
        "android_os_SystemClock.cpp",
        "android_os_SystemProperties.cpp",
        "android_os_Trace.cpp",
        "android_util_Log.cpp",
        "android_util_PathParser.cpp",
        "android_view_DisplayListCanvas.cpp",
@@ -173,7 +174,6 @@ cc_library_shared {
                "android_os_Parcel.cpp",
                "android_os_SELinux.cpp",
                "android_os_SharedMemory.cpp",
                "android_os_Trace.cpp",
                "android_os_UEventObserver.cpp",
                "android_os_VintfObject.cpp",
                "android_os_VintfRuntimeInfo.cpp",
+2 −0
Original line number Diff line number Diff line
@@ -69,6 +69,7 @@ extern int register_android_graphics_text_MeasuredText(JNIEnv* env);
extern int register_android_os_MessageQueue(JNIEnv* env);
extern int register_android_os_SystemClock(JNIEnv* env);
extern int register_android_os_SystemProperties(JNIEnv* env);
extern int register_android_os_Trace(JNIEnv* env);
extern int register_android_util_Log(JNIEnv* env);
extern int register_android_util_PathParser(JNIEnv* env);
extern int register_android_view_RenderNode(JNIEnv* env);
@@ -118,6 +119,7 @@ static const std::unordered_map<std::string, RegJNIRec> gRegJNIMap = {
    {"android.os.MessageQueue", REG_JNI(register_android_os_MessageQueue)},
    {"android.os.SystemClock", REG_JNI(register_android_os_SystemClock)},
    {"android.os.SystemProperties", REG_JNI(register_android_os_SystemProperties)},
    {"android.os.Trace", REG_JNI(register_android_os_Trace)},
    {"android.util.Log", REG_JNI(register_android_util_Log)},
    {"android.util.PathParser", REG_JNI(register_android_util_PathParser)},
    {"com.android.internal.util.VirtualRefBasePtr", REG_JNI(register_com_android_internal_util_VirtualRefBasePtr)},