blob: 9940442fed458cc15a12c4d702f455ab8ac4d367 [file] [log] [blame]
Dianne Hackborna95e4cb2010-06-18 18:09:33 -07001BASE_PATH := $(call my-dir)
2LOCAL_PATH:= $(call my-dir)
3
4include $(CLEAR_VARS)
5
6# our source files
7#
8LOCAL_SRC_FILES:= \
Christopher Tate6cce32b2010-07-12 18:21:36 -07009 asset_manager.cpp \
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -070010 configuration.cpp \
Dianne Hackborn54a181b2010-06-30 18:35:14 -070011 input.cpp \
Dianne Hackborn68267412010-07-02 18:52:01 -070012 looper.cpp \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070013 native_activity.cpp \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070014 native_window.cpp \
Kenny Root05105f72010-09-22 17:29:43 -070015 obb.cpp \
Kenny Root086d0842010-08-19 17:55:56 -070016 sensor.cpp \
17 storage_manager.cpp
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070018
19LOCAL_SHARED_LIBRARIES := \
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070020 libcutils \
21 libutils \
22 libbinder \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070023 libui \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070024 libgui \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070025 libandroid_runtime
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070026
Kenny Root086d0842010-08-19 17:55:56 -070027LOCAL_STATIC_LIBRARIES := \
28 libstorage
29
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070030LOCAL_C_INCLUDES += \
31 frameworks/base/native/include \
32 frameworks/base/core/jni/android \
33 dalvik/libnativehelper/include/nativehelper
34
35LOCAL_MODULE:= libandroid
36
37include $(BUILD_SHARED_LIBRARY)