diff options
-rw-r--r-- | include/binder/Parcel.h | 1 | ||||
-rw-r--r-- | libs/binder/Android.mk | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/include/binder/Parcel.h b/include/binder/Parcel.h index 9c3877ec4a..7ca5d8b0f2 100644 --- a/include/binder/Parcel.h +++ b/include/binder/Parcel.h @@ -20,6 +20,7 @@ #include <string> #include <vector> +#include <android-base/unique_fd.h> #include <cutils/native_handle.h> #include <nativehelper/ScopedFd.h> #include <utils/Errors.h> diff --git a/libs/binder/Android.mk b/libs/binder/Android.mk index adb9674d79..2483659de1 100644 --- a/libs/binder/Android.mk +++ b/libs/binder/Android.mk @@ -44,7 +44,8 @@ LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := libbinder -LOCAL_SHARED_LIBRARIES := liblog libcutils libutils +LOCAL_SHARED_LIBRARIES := libbase liblog libcutils libutils +LOCAL_EXPORT_SHARED_LIBRARY_HEADERS := libbase libutils LOCAL_CLANG := true LOCAL_SANITIZE := integer @@ -59,7 +60,8 @@ include $(BUILD_SHARED_LIBRARY) include $(CLEAR_VARS) LOCAL_MODULE := libbinder -LOCAL_STATIC_LIBRARIES += libutils +LOCAL_STATIC_LIBRARIES := libbase libutils +LOCAL_EXPORT_STATIC_LIBRARY_HEADERS := libbase libutils LOCAL_SRC_FILES := $(sources) ifneq ($(TARGET_USES_64_BIT_BINDER),true) ifneq ($(TARGET_IS_64_BIT),true) |