summaryrefslogtreecommitdiff
path: root/cmds
diff options
context:
space:
mode:
author Doug Kwan <dougkwan@google.com> 2009-10-04 19:27:57 -0700
committer Doug Kwan <dougkwan@google.com> 2009-10-04 19:27:57 -0700
commitb1bb6cfe91c97fccd720de565fa69ed787ae1cbc (patch)
treef57a58dd074a3846884b41320665d33a0d6553fe /cmds
parent82583b8312403ed734c30b161750d40c26086ee2 (diff)
Add back missing shared libraries used in executables in link commands. These
executables have calls to some shared libraries without explicitly linking them. Currently it works as linker links these libraries via dependencies of other libraries. This is fragile and not the right thing to do.
Diffstat (limited to 'cmds')
-rw-r--r--cmds/app_process/Android.mk1
-rw-r--r--cmds/bootanimation/Android.mk1
2 files changed, 2 insertions, 0 deletions
diff --git a/cmds/app_process/Android.mk b/cmds/app_process/Android.mk
index a33f5cc7c3e8..2391b72cc4a5 100644
--- a/cmds/app_process/Android.mk
+++ b/cmds/app_process/Android.mk
@@ -7,6 +7,7 @@ LOCAL_SRC_FILES:= \
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
+ libbinder \
libandroid_runtime
LOCAL_MODULE:= app_process
diff --git a/cmds/bootanimation/Android.mk b/cmds/bootanimation/Android.mk
index 3449de1fe737..939b63fa868f 100644
--- a/cmds/bootanimation/Android.mk
+++ b/cmds/bootanimation/Android.mk
@@ -17,6 +17,7 @@ LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
LOCAL_SHARED_LIBRARIES := \
libcutils \
libutils \
+ libbinder \
libui \
libskia \
libEGL \