Home | History | Annotate | Download | only in factory
      1 LOCAL_PATH:= $(call my-dir)
      2 
      3 # Effect factory library
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SRC_FILES:= \
      7 	EffectsFactory.c
      8 
      9 LOCAL_SHARED_LIBRARIES := \
     10 	libcutils
     11 
     12 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
     13 LOCAL_MODULE:= libeffects
     14 
     15 ifeq ($(TARGET_OS)-$(TARGET_SIMULATOR),linux-true)
     16 LOCAL_LDLIBS += -ldl
     17 endif
     18 
     19 ifneq ($(TARGET_SIMULATOR),true)
     20 LOCAL_SHARED_LIBRARIES += libdl
     21 endif
     22 
     23 LOCAL_C_INCLUDES := \
     24 
     25 include $(BUILD_SHARED_LIBRARY)
     26