Android.mk revision 05105f7abe02b2dff91d6260b3628c8b97816bab
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    obb.cpp \
16    sensor.cpp \
17    storage_manager.cpp
18
19LOCAL_SHARED_LIBRARIES := \
20    libcutils \
21    libutils \
22    libbinder \
23    libui \
24    libgui \
25    libsurfaceflinger_client \
26    libandroid_runtime
27
28LOCAL_STATIC_LIBRARIES := \
29    libstorage
30
31LOCAL_C_INCLUDES += \
32    frameworks/base/native/include \
33    frameworks/base/core/jni/android \
34    dalvik/libnativehelper/include/nativehelper
35
36LOCAL_MODULE:= libandroid
37
38include $(BUILD_SHARED_LIBRARY)
39