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 \ |
Mathias Agopian | 25ba5b6 | 2009-05-18 15:08:03 -0700 | [diff] [blame] | 13 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 14 | libandroid_runtime \ |
| 15 | libcutils \ |
| 16 | libui \ |
| 17 | libsystem_server \ |
| 18 | libhardware_legacy |
| 19 | |
| 20 | LOCAL_C_INCLUDES := \ |
| 21 | $(JNI_H_INCLUDE) |
| 22 | |
| 23 | ifeq ($(TARGET_OS),linux) |
| 24 | LOCAL_CFLAGS += -DXP_UNIX |
| 25 | endif |
| 26 | |
| 27 | LOCAL_MODULE:= runtime |
| 28 | |
| 29 | include $(BUILD_EXECUTABLE) |
| 30 | endif |