Home | History | Annotate | Download | only in IM
      1 LOCAL_PATH:= $(call my-dir)
      2 include $(CLEAR_VARS)
      3 
      4 LOCAL_SRC_FILES := $(call all-subdir-java-files) \
      5 			src/com/android/im/IChatSession.aidl \
      6 			src/com/android/im/IChatSessionListener.aidl \
      7 			src/com/android/im/IInvitationListener.aidl \
      8 			src/com/android/im/IChatSessionManager.aidl \
      9 			src/com/android/im/IConnectionListener.aidl \
     10 			src/com/android/im/IContactList.aidl \
     11 			src/com/android/im/IContactListListener.aidl \
     12 			src/com/android/im/IContactListManager.aidl \
     13 			src/com/android/im/IImConnection.aidl \
     14 			src/com/android/im/IChatListener.aidl \
     15 			src/com/android/im/IRemoteImService.aidl \
     16 			src/com/android/im/ISubscriptionListener.aidl \
     17 			src/com/android/im/IConnectionCreationListener.aidl \
     18 
     19 LOCAL_STATIC_JAVA_LIBRARIES := android-common
     20 
     21 LOCAL_PACKAGE_NAME := IM
     22 
     23 LOCAL_JNI_SHARED_LIBRARIES := libwbxml_jni
     24 
     25 #Disable building the APK; we are checking in the pre-built version which
     26 #contains the credential plug-in instead. Note the libwbxml_jni has to be
     27 #enabled because so won't be extracted from the system APK
     28 #include $(BUILD_PACKAGE)
     29 
     30 include $(call all-makefiles-under,$(LOCAL_PATH))
     31