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-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-06-30 18:35:14 -07:00
|
|
|
native_window.cpp
|
2010-06-18 18:09:33 -07:00
|
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
|
|
libcutils \
|
|
|
|
libutils \
|
|
|
|
libbinder \
|
2010-07-09 11:44:11 -07:00
|
|
|
libui \
|
|
|
|
libsurfaceflinger_client \
|
|
|
|
libandroid_runtime
|
2010-06-18 18:09:33 -07:00
|
|
|
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
|
|
frameworks/base/native/include \
|
|
|
|
frameworks/base/core/jni/android \
|
|
|
|
dalvik/libnativehelper/include/nativehelper
|
|
|
|
|
|
|
|
LOCAL_MODULE:= libandroid
|
|
|
|
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|