blob: e4097d71044648d579445d90ac5023578ec353ef [file] [log] [blame]
Todd Poynor87bf0d92013-05-16 14:51:15 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
Andreas Gampe347f2882014-11-13 14:31:11 -08005 BatteryProperties.cpp \
6 BatteryProperty.cpp \
7 IBatteryPropertiesListener.cpp \
8 IBatteryPropertiesRegistrar.cpp
Todd Poynor87bf0d92013-05-16 14:51:15 -07009
10LOCAL_STATIC_LIBRARIES := \
Andreas Gampe347f2882014-11-13 14:31:11 -080011 libutils \
12 libbinder
Todd Poynor87bf0d92013-05-16 14:51:15 -070013
14LOCAL_MODULE:= libbatteryservice
15
16LOCAL_MODULE_TAGS := optional
17
Andreas Gampe347f2882014-11-13 14:31:11 -080018LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
19
Todd Poynor87bf0d92013-05-16 14:51:15 -070020include $(BUILD_STATIC_LIBRARY)