Disk usage calculation will happen in more places now, so move the installd calculation utilities out to its own library that only gets built for the target. Change-Id: Idceb6bd663ca6ab3d38fa00e57ee74a25b784855
25 lines
410 B
Makefile
25 lines
410 B
Makefile
ifneq ($(TARGET_SIMULATOR),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
installd.c commands.c utils.c
|
|
|
|
#LOCAL_C_INCLUDES := \
|
|
# $(call include-path-for, system-core)/cutils
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libdiskusage
|
|
|
|
LOCAL_MODULE := installd
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif # !simulator
|