Merge "libhwbinder test: Android.mk -> Android.bp" am: 154040c0ca

am: e7d4e66030

Change-Id: Idbc4dbf3a9fbc7e1cbc865355d9c67550b14e8b5
This commit is contained in:
Steven Moreland 2017-05-25 20:58:18 +00:00 committed by android-build-merger
commit ce443e0b23
3 changed files with 16 additions and 13 deletions

View file

@ -14,6 +14,7 @@ subdirs = [
"inheritance/1.0/default",
"libhwbinder/1.0",
"libhwbinder/1.0/default",
"libhwbinder/aidl",
"memory/1.0",
"memory/1.0/default",
"msgq/1.0",

View file

@ -0,0 +1,15 @@
cc_library_shared {
name: "android.hardware.tests.libbinder",
srcs: ["android/tests/binder/IBenchmark.aidl"],
aidl: {
export_aidl_headers: true,
},
shared_libs: [
"libbinder",
"libutils",
],
}

View file

@ -1,13 +0,0 @@
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 \
include $(BUILD_SHARED_LIBRARY)