summaryrefslogtreecommitdiffstats
path: root/minadbd/Android.mk
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-27 17:53:58 +0100
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-27 17:53:58 +0100
commitd1b078df3339513b42772d12927b7887da277fc1 (patch)
tree01a6acebfda6a158cf2f961813b853bc80426b1d /minadbd/Android.mk
parentRemove more dead code from minzip. (diff)
parentam 3deba524: am ecead276: Merge "Add tests for read_block_adb." (diff)
downloadandroid_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.gz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.bz2
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.lz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.xz
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.tar.zst
android_bootable_recovery-d1b078df3339513b42772d12927b7887da277fc1.zip
Diffstat (limited to 'minadbd/Android.mk')
-rw-r--r--minadbd/Android.mk29
1 files changed, 21 insertions, 8 deletions
diff --git a/minadbd/Android.mk b/minadbd/Android.mk
index 24b043ee3..79fe96b93 100644
--- a/minadbd/Android.mk
+++ b/minadbd/Android.mk
@@ -2,6 +2,12 @@
LOCAL_PATH:= $(call my-dir)
+minadbd_cflags := \
+ -Wall -Werror \
+ -Wno-unused-parameter \
+ -Wno-missing-field-initializers \
+ -DADB_HOST=0 \
+
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
@@ -9,15 +15,22 @@ LOCAL_SRC_FILES := \
fuse_adb_provider.c \
services.c \
-LOCAL_CFLAGS := \
- -Wall -Werror \
- -Wno-unused-parameter \
- -Wimplicit-function-declaration \
- -DADB_HOST=0 \
-
+LOCAL_MODULE := libminadbd
+LOCAL_CFLAGS := $(minadbd_cflags)
+LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration
LOCAL_C_INCLUDES := bootable/recovery system/core/adb
LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
-LOCAL_MODULE := libminadbd
-
include $(BUILD_STATIC_LIBRARY)
+
+include $(CLEAR_VARS)
+
+LOCAL_CLANG := true
+LOCAL_MODULE := minadbd_test
+LOCAL_SRC_FILES := fuse_adb_provider_test.cpp
+LOCAL_CFLAGS := $(minadbd_cflags)
+LOCAL_C_INCLUDES := $(LOCAL_PATH) system/core/adb
+LOCAL_STATIC_LIBRARIES := libminadbd
+LOCAL_SHARED_LIBRARIES := liblog libutils
+
+include $(BUILD_NATIVE_TEST)