blob: 4e4a62c5d06a5838e6fd7c5fdeb171ee58474c32 [file] [log] [blame]
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +05301LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_MODULE_TAGS := optional
Ashwini Munigala21fd4592013-08-16 15:19:44 +05305src_dirs:= src/org/codeaurora/bluetooth/btcservice \
6 src/org/codeaurora/bluetooth/map \
7 src/org/codeaurora/bluetooth/ftp \
8 src/org/codeaurora/bluetooth/sap
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +05309
10LOCAL_SRC_FILES := \
Ashwini Munigala21fd4592013-08-16 15:19:44 +053011 $(call all-java-files-under, $(src_dirs))
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053012
Pramod Sivaraman05b58082013-06-18 18:30:40 +053013LOCAL_PACKAGE_NAME := BluetoothExt
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053014LOCAL_CERTIFICATE := platform
Ashwini Munigalae38b5662013-06-12 17:05:14 +053015LOCAL_JAVA_LIBRARIES := javax.obex
16LOCAL_JAVA_LIBRARIES += mms-common
17LOCAL_JAVA_LIBRARIES += telephony-common
18LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
19
20LOCAL_REQUIRED_MODULES := libbluetooth_jni bluetooth.default
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053021
22LOCAL_PROGUARD_ENABLED := disabled
23
24include $(BUILD_PACKAGE)
25
Ashwini Munigala21fd4592013-08-16 15:19:44 +053026include $(CLEAR_VARS)
27
28src_dirs:= src/org/codeaurora/bluetooth/mapclient
29
30LOCAL_SRC_FILES := \
31 $(call all-java-files-under, $(src_dirs))
32
33LOCAL_MODULE:= org.codeaurora.bluetooth.mapclient
34LOCAL_JAVA_LIBRARIES := javax.obex
35LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
36
37LOCAL_PROGUARD_ENABLED := disabled
38
39include $(BUILD_STATIC_JAVA_LIBRARY)
Ashwini Munigala102de102013-08-16 15:31:17 +053040
41include $(CLEAR_VARS)
42
43src_dirs:= src/org/codeaurora/bluetooth/pbapclient
44
45LOCAL_SRC_FILES := \
46 $(call all-java-files-under, $(src_dirs))
47
48LOCAL_MODULE:= org.codeaurora.bluetooth.pbapclient
49LOCAL_JAVA_LIBRARIES := javax.obex
50LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
51
52LOCAL_PROGUARD_ENABLED := disabled
53
54include $(BUILD_STATIC_JAVA_LIBRARY)
55
Pramod Sivaraman4a8e3852013-05-15 17:25:22 +053056include $(call all-makefiles-under,$(LOCAL_PATH))