Merge "libhwbinder test: Android.mk -> Android.bp" am: 154040c0ca
am: e7d4e66030
Change-Id: Idbc4dbf3a9fbc7e1cbc865355d9c67550b14e8b5
This commit is contained in:
commit
ce443e0b23
3 changed files with 16 additions and 13 deletions
|
@ -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",
|
||||
|
|
15
tests/libhwbinder/aidl/Android.bp
Normal file
15
tests/libhwbinder/aidl/Android.bp
Normal 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",
|
||||
],
|
||||
|
||||
}
|
|
@ -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)
|
Loading…
Reference in a new issue