blob: 2fe06790904dadaf52ba620876c4308e1d2829f5 [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:= \
Dianne Hackborn54a181b2010-06-30 18:35:14 -07009 input.cpp \
Dianne Hackborn68267412010-07-02 18:52:01 -070010 looper.cpp \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070011 native_activity.cpp \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070012 native_window.cpp \
13 sensor.cpp
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070014
15LOCAL_SHARED_LIBRARIES := \
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070016 libcutils \
17 libutils \
18 libbinder \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070019 libui \
Mathias Agopianb957b9d2010-07-13 22:21:56 -070020 libgui \
Dianne Hackborn289b9b62010-07-09 11:44:11 -070021 libsurfaceflinger_client \
22 libandroid_runtime
Dianne Hackborna95e4cb2010-06-18 18:09:33 -070023
24LOCAL_C_INCLUDES += \
25 frameworks/base/native/include \
26 frameworks/base/core/jni/android \
27 dalvik/libnativehelper/include/nativehelper
28
29LOCAL_MODULE:= libandroid
30
31include $(BUILD_SHARED_LIBRARY)