diff options
author | Ajay Dudani <adudani@codeaurora.org> | 2015-02-04 16:49:44 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-02-10 16:25:17 -0800 |
commit | 9905f3a4ee90e4f569bb187e6fa15616cc54bbb7 (patch) | |
tree | b71793fa987915a07da374205e327bf1ae77954d /minui | |
parent | 35efcd275f90f5ffea371bb228a14b36c50e61d3 (diff) | |
download | bootable_recovery-9905f3a4ee90e4f569bb187e6fa15616cc54bbb7.zip bootable_recovery-9905f3a4ee90e4f569bb187e6fa15616cc54bbb7.tar.gz bootable_recovery-9905f3a4ee90e4f569bb187e6fa15616cc54bbb7.tar.bz2 |
recovery: Generate libminui dynamic library
Allow factory test images to use minui functionaltiy
by making use of libminui dynamic library.
Change-Id: I63e77420d5addbcc6eebeedc213f629085766b4c
Diffstat (limited to 'minui')
-rw-r--r-- | minui/Android.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/minui/Android.mk b/minui/Android.mk index df4aac1..aee2a34 100644 --- a/minui/Android.mk +++ b/minui/Android.mk @@ -30,3 +30,10 @@ else endif include $(BUILD_STATIC_LIBRARY) + +# Used by OEMs for factory test images. +include $(CLEAR_VARS) +LOCAL_MODULE := libminui +LOCAL_WHOLE_STATIC_LIBRARIES += libminui +LOCAL_SHARED_LIBRARIES := libpng +include $(BUILD_SHARED_LIBRARY) |