Android.mk revision 6cce32b6adbb3a9725fc730ba0e0068a74657e60
1BASE_PATH := $(call my-dir)
2LOCAL_PATH:= $(call my-dir)
3
4include $(CLEAR_VARS)
5
6# our source files
7#
8LOCAL_SRC_FILES:= \
9    asset_manager.cpp \
10    input.cpp \
11    looper.cpp \
12    native_activity.cpp \
13    native_window.cpp \
14    sensor.cpp
15
16LOCAL_SHARED_LIBRARIES := \
17    libcutils \
18    libutils \
19    libbinder \
20    libui \
21    libgui \
22    libsurfaceflinger_client \
23    libandroid_runtime
24
25LOCAL_C_INCLUDES += \
26    frameworks/base/native/include \
27    frameworks/base/core/jni/android \
28    dalvik/libnativehelper/include/nativehelper
29
30LOCAL_MODULE:= libandroid
31
32include $(BUILD_SHARED_LIBRARY)
33