Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 1 | BASE_PATH := $(call my-dir) |
| 2 | LOCAL_PATH:= $(call my-dir) |
| 3 | |
| 4 | include $(CLEAR_VARS) |
| 5 | |
| 6 | # our source files |
| 7 | # |
| 8 | LOCAL_SRC_FILES:= \ |
| 9 | activity.cpp \ |
| 10 | input.cpp |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | libandroid_runtime \ |
| 14 | libcutils \ |
| 15 | libutils \ |
| 16 | libbinder \ |
| 17 | libui |
| 18 | |
| 19 | LOCAL_C_INCLUDES += \ |
| 20 | frameworks/base/native/include \ |
| 21 | frameworks/base/core/jni/android \ |
| 22 | dalvik/libnativehelper/include/nativehelper |
| 23 | |
| 24 | LOCAL_MODULE:= libandroid |
| 25 | |
| 26 | include $(BUILD_SHARED_LIBRARY) |