summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-06-03 19:49:29 +0200
committerRom Lemarchand <romlem@google.com>2015-11-16 23:28:40 +0100
commit7101b2e2854985727b7ef65e5b5057e0ecf2d034 (patch)
tree937f286110e485837d6a50203c7ab362a4f7afdd /Android.mk
parentam 838768ca: am 15da523e: am 3c7f655b: (-s ours) am 0e804d54: am d396b9db: am 710b6bb9: am ec4b58ad: (-s ours) am ec63d564: Track usage of Vector / SortedVector from libutils DO NOT MERGE (diff)
downloadandroid_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar.gz
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar.bz2
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar.lz
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar.xz
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.tar.zst
android_bootable_recovery-7101b2e2854985727b7ef65e5b5057e0ecf2d034.zip
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index b31f73017..ac1ef83d8 100644
--- a/Android.mk
+++ b/Android.mk
@@ -14,11 +14,10 @@
LOCAL_PATH := $(call my-dir)
-
include $(CLEAR_VARS)
LOCAL_SRC_FILES := fuse_sideload.c
-
+LOCAL_CLANG := true
LOCAL_CFLAGS := -O2 -g -DADB_HOST=0 -Wall -Wno-unused-parameter
LOCAL_CFLAGS += -D_XOPEN_SOURCE -D_GNU_SOURCE
@@ -55,6 +54,7 @@ RECOVERY_API_VERSION := 3
RECOVERY_FSTAB_VERSION := 2
LOCAL_CFLAGS += -DRECOVERY_API_VERSION=$(RECOVERY_API_VERSION)
LOCAL_CFLAGS += -Wno-unused-parameter
+LOCAL_CLANG := true
LOCAL_C_INCLUDES += \
system/vold \
@@ -99,6 +99,7 @@ include $(BUILD_EXECUTABLE)
# All the APIs for testing
include $(CLEAR_VARS)
+LOCAL_CLANG := true
LOCAL_MODULE := libverifier
LOCAL_MODULE_TAGS := tests
LOCAL_SRC_FILES := \
@@ -106,6 +107,7 @@ LOCAL_SRC_FILES := \
include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
+LOCAL_CLANG := true
LOCAL_MODULE := verifier_test
LOCAL_FORCE_STATIC_EXECUTABLE := true
LOCAL_MODULE_TAGS := tests