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

Commit e7d4e660 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "libhwbinder test: Android.mk -> Android.bp"

am: 154040c0

Change-Id: Ibaebc42be2d02322984ee205342e6b848a9d73bb
parents fbb8bb06 154040c0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
cc_library_shared {
    name: "android.hardware.tests.libbinder",

    srcs: ["android/tests/binder/IBenchmark.aidl"],

    aidl: {
        export_aidl_headers: true,
    },

    shared_libs: [
        "libbinder",
        "libutils",
    ],

}

tests/libhwbinder/aidl/Android.mk

deleted100644 → 0
+0 −13
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 \

include $(BUILD_SHARED_LIBRARY)