From 89178e79d584f0dcdb23e9adcbdcedd28ad63fe7 Mon Sep 17 00:00:00 2001 From: Hridya Valsaraju Date: Wed, 10 Jan 2018 16:14:28 -0800 Subject: [PATCH] Add libhealthstoragedefault to make files This is to add empty implementations of methods reporting storage health. Bug: 68388678 Test: vts-tradefed run vts -m VtsHalHealthV2_0 Change-Id: If6180c22a4b356650084df61b1e24af3de0ca67e --- healthd/Android.bp | 2 ++ healthd/Android.mk | 2 ++ 2 files changed, 4 insertions(+) diff --git a/healthd/Android.bp b/healthd/Android.bp index 3a71d03e8..df12ff05e 100644 --- a/healthd/Android.bp +++ b/healthd/Android.bp @@ -39,6 +39,7 @@ cc_binary { static_libs: [ "android.hardware.health@2.0-impl", "android.hardware.health@1.0-convert", + "libhealthstoragedefault", "libbatterymonitor", ], @@ -72,6 +73,7 @@ cc_binary { "android.hardware.health@2.0-impl", "android.hardware.health@1.0-convert", "libbatterymonitor", + "libhealthstoragedefault", ], shared_libs: [ diff --git a/healthd/Android.mk b/healthd/Android.mk index 7e58785d6..9127c60f7 100644 --- a/healthd/Android.mk +++ b/healthd/Android.mk @@ -50,6 +50,7 @@ LOCAL_STATIC_LIBRARIES := \ android.hardware.health@2.0 \ android.hardware.health@2.0-impl \ android.hardware.health@1.0 \ + libhealthstoragedefault \ libminui \ libpng \ libz \ @@ -98,6 +99,7 @@ CHARGER_STATIC_LIBRARIES := \ libhidltransport \ libhidlbase \ libhwbinder \ + libhealthstoragedefault \ libvndksupport \ libhealthd_charger \ libhealthd_draw \