Android.mk revision 08d5b8fad8d46ccb64db2fdcb4d66972ec87bf48
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    configuration.cpp \
11    input.cpp \
12    looper.cpp \
13    native_activity.cpp \
14    native_window.cpp \
15    sensor.cpp
16
17LOCAL_SHARED_LIBRARIES := \
18    libcutils \
19    libutils \
20    libbinder \
21    libui \
22    libgui \
23    libsurfaceflinger_client \
24    libandroid_runtime
25
26LOCAL_C_INCLUDES += \
27    frameworks/base/native/include \
28    frameworks/base/core/jni/android \
29    dalvik/libnativehelper/include/nativehelper
30
31LOCAL_MODULE:= libandroid
32
33include $(BUILD_SHARED_LIBRARY)
34