Home | History | Annotate | Download | only in installd
      1 ifneq ($(TARGET_SIMULATOR),true)
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= \
      7     installd.c commands.c utils.c
      8 
      9 LOCAL_C_INCLUDES := \
     10     $(call include-path-for, system-core)/cutils
     11 
     12 LOCAL_SHARED_LIBRARIES := \
     13     libcutils
     14 
     15 LOCAL_STATIC_LIBRARIES :=
     16 
     17 LOCAL_MODULE:= installd
     18 
     19 include $(BUILD_EXECUTABLE)
     20 
     21 endif # !simulator))
     22