summaryrefslogtreecommitdiffstats
path: root/otautil/Android.mk
diff options
context:
space:
mode:
authorTianjie Xu <xunchang@google.com>2017-03-28 23:28:37 +0200
committerandroid-build-merger <android-build-merger@google.com>2017-03-28 23:28:37 +0200
commit1d7e500bfcd74d66a6bbc1fb81787b228765f99a (patch)
tree2b2015215edeac3f41a5c058da697410bc7c3f41 /otautil/Android.mk
parentMerge "Add the missing sr-Latn into png files and rename the png locale header" (diff)
parentMerge "Log temperature during OTA update" (diff)
downloadandroid_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar.gz
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar.bz2
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar.lz
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar.xz
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.tar.zst
android_bootable_recovery-1d7e500bfcd74d66a6bbc1fb81787b228765f99a.zip
Diffstat (limited to 'otautil/Android.mk')
-rw-r--r--otautil/Android.mk12
1 files changed, 8 insertions, 4 deletions
diff --git a/otautil/Android.mk b/otautil/Android.mk
index e602f19ee..f7ca9a9ee 100644
--- a/otautil/Android.mk
+++ b/otautil/Android.mk
@@ -18,12 +18,16 @@ include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
SysUtil.cpp \
DirUtil.cpp \
- ZipUtil.cpp
+ ZipUtil.cpp \
+ ThermalUtil.cpp
-LOCAL_STATIC_LIBRARIES := libselinux libbase
+LOCAL_STATIC_LIBRARIES := \
+ libselinux \
+ libbase
LOCAL_MODULE := libotautil
-
-LOCAL_CFLAGS += -Werror -Wall
+LOCAL_CFLAGS := \
+ -Werror \
+ -Wall
include $(BUILD_STATIC_LIBRARY)