From 1e06bde16e7bcbb2aeeeb6882571b3b07e2bc2f1 Mon Sep 17 00:00:00 2001 From: Christopher Wiley Date: Thu, 14 Apr 2016 10:16:33 -0700 Subject: [PATCH] libstorage needs libbinder include paths This library is almost all binder related. It should be using libbinder's published include path. Bug: 27804373 Test: This library compiles with a slightly modified libbinder include path. Change-Id: Ib8e00b59604cdda69ec36cf1c90150b4b9033879 --- libs/storage/Android.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/storage/Android.mk b/libs/storage/Android.mk index fae2bf7c3457e..d0eb6d4eb425a 100644 --- a/libs/storage/Android.mk +++ b/libs/storage/Android.mk @@ -11,4 +11,6 @@ LOCAL_MODULE:= libstorage LOCAL_CFLAGS += -Wall -Werror +LOCAL_SHARED_LIBRARIES := libbinder + include $(BUILD_STATIC_LIBRARY)