blob: 950a1e9a7ad12a7a15bd4f3940e04c5defd8ed6c [file] [log] [blame]
Dianne Hackborna95e4cb2010-06-18 18:09:33 -07001BASE_PATH := $(call my-dir)
2LOCAL_PATH:= $(call my-dir)
3
4include $(CLEAR_VARS)
5
6# our source files
7#
8LOCAL_SRC_FILES:= \
Christopher Tate6cce32b2010-07-12 18:21:36 -07009 asset_manager.cpp \
Dianne Hackborn54a181b2010-06-30 18:35:14 -070010 input.cpp \
Dianne Hackborn68267412010-07-02 18:52:01 -070011 looper.cpp \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070012 native_activity.cpp \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070013 native_window.cpp \
14 sensor.cpp
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070015
16LOCAL_SHARED_LIBRARIES := \
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070017 libcutils \
18 libutils \
19 libbinder \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070020 libui \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070021 libgui \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070022 libsurfaceflinger_client \
23 libandroid_runtime
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070024
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)