-
Notifications
You must be signed in to change notification settings - Fork 1
/
Android.mk
37 lines (28 loc) · 1.19 KB
/
Android.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := eng
LOCAL_SRC_FILES := $(call all-subdir-java-files) \
src/com/android/im/IChatSession.aidl \
src/com/android/im/IChatSessionListener.aidl \
src/com/android/im/IInvitationListener.aidl \
src/com/android/im/IChatSessionManager.aidl \
src/com/android/im/IConnectionListener.aidl \
src/com/android/im/IContactList.aidl \
src/com/android/im/IContactListListener.aidl \
src/com/android/im/IContactListManager.aidl \
src/com/android/im/IImConnection.aidl \
src/com/android/im/IChatListener.aidl \
src/com/android/im/IRemoteImService.aidl \
src/com/android/im/ISubscriptionListener.aidl \
src/com/android/im/IConnectionCreationListener.aidl \
LOCAL_SRC_FILES := $(filter-out \
samples/% \
,$(LOCAL_SRC_FILES))
LOCAL_PACKAGE_NAME := IM
# TODO: Remove dependency of application on the test runner (android.test.runner)
# library.
LOCAL_JAVA_LIBRARIES := android.test.runner com.android.im.plugin
# LOCAL_REQUIRED_MODULES must go before BUILD_PACKAGE
LOCAL_REQUIRED_MODULES := libwbxml libwbxml_jni
include $(BUILD_PACKAGE)
include $(LOCAL_PATH)/plugin/Android.mk