Android.mk revision 33b2264ea9ab0f1980c49698729a0ab3c51d07fe
1ifneq ($(TARGET_SIMULATOR),true)
2
3LOCAL_PATH := $(call my-dir)
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES := \
7    installd.c commands.c utils.c
8
9#LOCAL_C_INCLUDES := \
10#    $(call include-path-for, system-core)/cutils
11
12LOCAL_SHARED_LIBRARIES := \
13    libcutils
14
15LOCAL_STATIC_LIBRARIES := \
16    libdiskusage
17
18LOCAL_MODULE := installd
19
20LOCAL_MODULE_TAGS := optional
21
22include $(BUILD_EXECUTABLE)
23
24endif # !simulator
25