1LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5    BatteryProperties.cpp \
6    BatteryProperty.cpp \
7    IBatteryPropertiesListener.cpp \
8    IBatteryPropertiesRegistrar.cpp
9
10LOCAL_STATIC_LIBRARIES := \
11    libutils \
12    libbinder
13
14LOCAL_MODULE:= libbatteryservice
15
16LOCAL_MODULE_TAGS := optional
17
18LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
19
20include $(BUILD_STATIC_LIBRARY)
21