565ba02b89
Allow the charging animation to be customized with a configuration file and custom assets. - Add a parser to parse a custom configuration file. - Add support for showing a clock and the battery percentage. - Expand feature that conditionally shows animation frames using min_level and level_only to min_level and max_level BUG: 29547343 Change-Id: Ia33f4bb37dc7d4c7fa6507a63481e93bf0bf9738
21 lines
356 B
Makefile
21 lines
356 B
Makefile
# Copyright 2016 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
AnimationParser_test.cpp \
|
|
|
|
LOCAL_MODULE := healthd_test
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libhealthd_internal \
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
liblog \
|
|
libbase \
|
|
libcutils \
|
|
|
|
include $(BUILD_NATIVE_TEST)
|