The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | include $(CLEAR_VARS) | ||||
3 | |||||
4 | LOCAL_SRC_FILES:= \ | ||||
5 | app_main.cpp | ||||
6 | |||||
7 | LOCAL_SHARED_LIBRARIES := \ | ||||
8 | libcutils \ | ||||
9 | libutils \ | ||||
Doug Kwan | b1bb6cf | 2009-10-04 19:27:57 -0700 | [diff] [blame] | 10 | libbinder \ |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 11 | libandroid_runtime |
12 | |||||
13 | LOCAL_MODULE:= app_process | ||||
14 | |||||
15 | include $(BUILD_EXECUTABLE) |