2012-03-28 20:55:43 +00:00
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= \
|
2014-11-13 22:31:11 +00:00
|
|
|
IPowerManager.cpp
|
2012-03-28 20:55:43 +00:00
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2014-11-13 22:31:11 +00:00
|
|
|
libutils \
|
|
|
|
libbinder
|
2012-03-28 20:55:43 +00:00
|
|
|
|
|
|
|
LOCAL_MODULE:= libpowermanager
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
|
2014-11-13 22:31:11 +00:00
|
|
|
LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
|
|
|
|
|
2012-03-28 20:55:43 +00:00
|
|
|
include $(BUILD_SHARED_LIBRARY)
|