summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2016-03-04 21:28:30 +0100
committerandroid-build-merger <android-build-merger@google.com>2016-03-04 21:28:30 +0100
commitd29a16afc7918ee921a995950f31dd1d6be6823f (patch)
treee678fcfaf7011a95a64e9d6b9a63538502e4d75b /Android.mk
parentMerge "Restore labels on /postinstall during recovery." am: 60eae72ac6 (diff)
parentMerge "Fix the improper use of LOCAL_WHOLE_STATIC_LIBRARIES." (diff)
downloadandroid_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar.gz
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar.bz2
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar.lz
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar.xz
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.tar.zst
android_bootable_recovery-d29a16afc7918ee921a995950f31dd1d6be6823f.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk9
1 files changed, 6 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index 4477fefe3..fc981e12d 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,18 +14,20 @@
LOCAL_PATH := $(call my-dir)
+# libfusesideload (static library)
+# ===============================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := fuse_sideload.cpp
LOCAL_CLANG := true
LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
-
LOCAL_MODULE := libfusesideload
-
LOCAL_STATIC_LIBRARIES := libcutils libc libmincrypt
include $(BUILD_STATIC_LIBRARY)
+# recovery (static executable)
+# ===============================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
@@ -102,7 +104,8 @@ endif
include $(BUILD_EXECUTABLE)
-# All the APIs for testing
+# libverifier (static library)
+# ===============================
include $(CLEAR_VARS)
LOCAL_CLANG := true
LOCAL_MODULE := libverifier