The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame^] | 1 | ifeq ($(TARGET_SIMULATOR),true) |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | LOCAL_SRC_FILES:= \ |
| 7 | ServiceManager.cpp \ |
| 8 | SignalHandler.cpp \ |
| 9 | main_runtime.cpp |
| 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
| 12 | libutils \ |
| 13 | libandroid_runtime \ |
| 14 | libcutils \ |
| 15 | libui \ |
| 16 | libsystem_server \ |
| 17 | libhardware_legacy |
| 18 | |
| 19 | LOCAL_C_INCLUDES := \ |
| 20 | $(JNI_H_INCLUDE) |
| 21 | |
| 22 | ifeq ($(TARGET_OS),linux) |
| 23 | LOCAL_CFLAGS += -DXP_UNIX |
| 24 | endif |
| 25 | |
| 26 | LOCAL_MODULE:= runtime |
| 27 | |
| 28 | include $(BUILD_EXECUTABLE) |
| 29 | endif |