diff options
author | Tianjie Xu <xunchang@google.com> | 2017-03-28 23:44:24 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-03-28 23:44:24 +0200 |
commit | aa39b3c62311114d455f189a54fd8e461539124e (patch) | |
tree | aab58851a47f3a588385330dd3f85f08e1bf0ff7 /otautil/Android.mk | |
parent | Merge "tests: Construct two bad packages at runtime for VerifierTest." (diff) | |
parent | Merge "Log temperature during OTA update" am: bc2c51a97f am: 1d7e500bfc (diff) | |
download | android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar.gz android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar.bz2 android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar.lz android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar.xz android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.tar.zst android_bootable_recovery-aa39b3c62311114d455f189a54fd8e461539124e.zip |
Diffstat (limited to 'otautil/Android.mk')
-rw-r--r-- | otautil/Android.mk | 12 |
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) |