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

Commit 90ff8698 authored by Zhuoyao Zhang's avatar Zhuoyao Zhang
Browse files

Add test aidl file for benchmark binder performance.

Bug: 31068579
Change-Id: Idf7d5da902eb17f166ac07dc966c009bc1d9c7ae
parent afba0364
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)
LOCAL_MODULE := android.hardware.tests.libbinder
LOCAL_MODULE_CLASS := SHARED_LIBRARIES

LOCAL_SRC_FILES := android/tests/binder/IBenchmark.aidl

LOCAL_SHARED_LIBRARIES := \
  libbinder \
  libutils \

LOCAL_STATIC_LIBRARIES := libtestUtil

LOCAL_COMPATIBILITY_SUITE := vts
-include test/vts/tools/build/Android.packaging_sharedlib.mk
include $(BUILD_SHARED_LIBRARY)
+5 −0
Original line number Diff line number Diff line
package android.tests.binder;

interface IBenchmark {
  byte[] sendVec(in byte[] data);
}
 No newline at end of file