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:= \ |
Christopher Tate | 6cce32b | 2010-07-12 18:21:36 -0700 | [diff] [blame^] | 9 | asset_manager.cpp \ |
Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 10 | input.cpp \ |
Dianne Hackborn | 6826741 | 2010-07-02 18:52:01 -0700 | [diff] [blame] | 11 | looper.cpp \ |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 12 | native_activity.cpp \ |
Mathias Agopian | b957b9d | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 13 | native_window.cpp \ |
| 14 | sensor.cpp |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 15 | |
| 16 | LOCAL_SHARED_LIBRARIES := \ |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 17 | libcutils \ |
| 18 | libutils \ |
| 19 | libbinder \ |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 20 | libui \ |
Mathias Agopian | b957b9d | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 21 | libgui \ |
Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 22 | libsurfaceflinger_client \ |
| 23 | libandroid_runtime |
Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 24 | |
| 25 | LOCAL_C_INCLUDES += \ |
| 26 | frameworks/base/native/include \ |
| 27 | frameworks/base/core/jni/android \ |
| 28 | dalvik/libnativehelper/include/nativehelper |
| 29 | |
| 30 | LOCAL_MODULE:= libandroid |
| 31 | |
| 32 | include $(BUILD_SHARED_LIBRARY) |