aboutsummaryrefslogtreecommitdiffstats
path: root/minadbd/Android.mk
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-02-26 15:33:00 -0800
committerDan Albert <danalbert@google.com>2015-02-26 17:00:11 -0800
commitffd6c31a770618eff6354b65ba7352f4da116055 (patch)
treecb435d9851584e52d451ad082eba021b368084a3 /minadbd/Android.mk
parentcab0beb95adce79b0c33488b5a503cac7dca6e77 (diff)
downloadbootable_recovery-ffd6c31a770618eff6354b65ba7352f4da116055.zip
bootable_recovery-ffd6c31a770618eff6354b65ba7352f4da116055.tar.gz
bootable_recovery-ffd6c31a770618eff6354b65ba7352f4da116055.tar.bz2
Add tests for read_block_adb.
These tests aren't completely representative in that they don't run in the recovery image. We might want to look in to adding a self-test option to the recovery UI. Until then, these can be run on a normal device (which is easier to do anyway). Bug: 19522788 Change-Id: Idb20feb55d10c62905c2480ab1b61a2e4b5f60d8
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 24b043e..79fe96b 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)