2009-03-04 03:31:44 +00:00
|
|
|
ifeq ($(TARGET_SIMULATOR),true)
|
|
|
|
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
|
|
ServiceManager.cpp \
|
|
|
|
SignalHandler.cpp \
|
|
|
|
main_runtime.cpp
|
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
libutils \
|
2009-05-18 22:08:03 +00:00
|
|
|
libbinder \
|
2009-03-04 03:31:44 +00:00
|
|
|
libandroid_runtime \
|
|
|
|
libcutils \
|
|
|
|
libui \
|
|
|
|
libsystem_server \
|
|
|
|
libhardware_legacy
|
|
|
|
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
|
|
$(JNI_H_INCLUDE)
|
|
|
|
|
|
|
|
ifeq ($(TARGET_OS),linux)
|
|
|
|
LOCAL_CFLAGS += -DXP_UNIX
|
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_MODULE:= runtime
|
|
|
|
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif
|