| 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 | 08d5b8f | 2010-08-04 11:12:40 -0700 | [diff] [blame] | 10 | configuration.cpp \ |
| Dianne Hackborn | 54a181b | 2010-06-30 18:35:14 -0700 | [diff] [blame] | 11 | input.cpp \ |
| Dianne Hackborn | 6826741 | 2010-07-02 18:52:01 -0700 | [diff] [blame] | 12 | looper.cpp \ |
| Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 13 | native_activity.cpp \ |
| Mathias Agopian | b957b9d | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 14 | native_window.cpp \ |
| Kenny Root | 05105f7 | 2010-09-22 17:29:43 -0700 | [diff] [blame] | 15 | obb.cpp \ |
| Kenny Root | 086d084 | 2010-08-19 17:55:56 -0700 | [diff] [blame] | 16 | sensor.cpp \ |
| 17 | storage_manager.cpp | ||||
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := \ | ||||
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 20 | libcutils \ |
| Mathias Agopian | 83c64e6 | 2012-02-20 16:58:20 -0800 | [diff] [blame] | 21 | libandroidfw \ |
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 22 | libutils \ |
| 23 | libbinder \ | ||||
| Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 24 | libui \ |
| Mathias Agopian | b957b9d | 2010-07-13 22:21:56 -0700 | [diff] [blame] | 25 | libgui \ |
| Dianne Hackborn | 289b9b6 | 2010-07-09 11:44:11 -0700 | [diff] [blame] | 26 | libandroid_runtime |
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 27 | |
| Kenny Root | 086d084 | 2010-08-19 17:55:56 -0700 | [diff] [blame] | 28 | LOCAL_STATIC_LIBRARIES := \ |
| 29 | libstorage | ||||
| 30 | |||||
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 31 | LOCAL_C_INCLUDES += \ |
| 32 | frameworks/base/native/include \ | ||||
| Elliott Hughes | 89269cf | 2012-05-03 16:39:22 -0700 | [diff] [blame] | 33 | frameworks/base/core/jni/android |
| Dianne Hackborn | a95e4cb | 2010-06-18 18:09:33 -0700 | [diff] [blame] | 34 | |
| 35 | LOCAL_MODULE:= libandroid | ||||
| 36 | |||||
| 37 | include $(BUILD_SHARED_LIBRARY) | ||||