Home | History | Annotate | Download | only in android
      1 BASE_PATH := $(call my-dir)
      2 LOCAL_PATH:= $(call my-dir)
      3 
      4 include $(CLEAR_VARS)
      5 
      6 # our source files
      7 #
      8 LOCAL_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 
     19 LOCAL_SHARED_LIBRARIES := \
     20     libcutils \
     21     libutils \
     22     libbinder \
     23     libui \
     24     libgui \
     25     libsurfaceflinger_client \
     26     libandroid_runtime
     27 
     28 LOCAL_STATIC_LIBRARIES := \
     29     libstorage
     30 
     31 LOCAL_C_INCLUDES += \
     32     frameworks/base/native/include \
     33     frameworks/base/core/jni/android \
     34     dalvik/libnativehelper/include/nativehelper
     35 
     36 LOCAL_MODULE:= libandroid
     37 
     38 include $(BUILD_SHARED_LIBRARY)
     39