2010-06-18 18:09:33 -07:00
|
|
|
BASE_PATH := $(call my-dir)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
# our source files
|
|
|
|
#
|
|
|
|
LOCAL_SRC_FILES:= \
|
2010-07-12 18:21:36 -07:00
|
|
|
asset_manager.cpp \
|
2010-08-04 11:12:40 -07:00
|
|
|
configuration.cpp \
|
2010-06-30 18:35:14 -07:00
|
|
|
input.cpp \
|
2010-07-02 18:52:01 -07:00
|
|
|
looper.cpp \
|
2010-07-09 11:44:11 -07:00
|
|
|
native_activity.cpp \
|
2010-07-13 22:21:56 -07:00
|
|
|
native_window.cpp \
|
2010-09-22 17:29:43 -07:00
|
|
|
obb.cpp \
|
2010-08-19 17:55:56 -07:00
|
|
|
sensor.cpp \
|
|
|
|
storage_manager.cpp
|
2010-06-18 18:09:33 -07:00
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
2013-04-09 21:54:12 -07:00
|
|
|
liblog \
|
2010-06-18 18:09:33 -07:00
|
|
|
libcutils \
|
2012-02-20 16:58:20 -08:00
|
|
|
libandroidfw \
|
2010-06-18 18:09:33 -07:00
|
|
|
libutils \
|
|
|
|
libbinder \
|
2010-07-09 11:44:11 -07:00
|
|
|
libui \
|
2010-07-13 22:21:56 -07:00
|
|
|
libgui \
|
2010-07-09 11:44:11 -07:00
|
|
|
libandroid_runtime
|
2010-06-18 18:09:33 -07:00
|
|
|
|
2010-08-19 17:55:56 -07:00
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
|
|
libstorage
|
|
|
|
|
2010-06-18 18:09:33 -07:00
|
|
|
LOCAL_C_INCLUDES += \
|
|
|
|
frameworks/base/native/include \
|
2012-05-03 16:39:22 -07:00
|
|
|
frameworks/base/core/jni/android
|
2010-06-18 18:09:33 -07:00
|
|
|
|
|
|
|
LOCAL_MODULE:= libandroid
|
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|