blob: 8c621b6017369ee46d2ec6061cc282e394a5095b [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:= \
9 activity.cpp \
10 input.cpp
11
12LOCAL_SHARED_LIBRARIES := \
13 libandroid_runtime \
14 libcutils \
15 libutils \
16 libbinder \
17 libui
18
19LOCAL_C_INCLUDES += \
20 frameworks/base/native/include \
21 frameworks/base/core/jni/android \
22 dalvik/libnativehelper/include/nativehelper
23
24LOCAL_MODULE:= libandroid
25
26include $(BUILD_SHARED_LIBRARY)