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 \ |
Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame^] | 10 | input.cpp \ |
| 11 | native_window.cpp |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 12 | |
| 13 | LOCAL_SHARED_LIBRARIES := \ |
| 14 | libandroid_runtime \ |
| 15 | libcutils \ |
| 16 | libutils \ |
| 17 | libbinder \ |
| 18 | libui |
| 19 | |
| 20 | LOCAL_C_INCLUDES += \ |
| 21 | frameworks/base/native/include \ |
| 22 | frameworks/base/core/jni/android \ |
| 23 | dalvik/libnativehelper/include/nativehelper |
| 24 | |
| 25 | LOCAL_MODULE:= libandroid |
| 26 | |
| 27 | include $(BUILD_SHARED_LIBRARY) |