summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorPramod Sivaraman <spramod@codeaurora.org>2013-05-15 17:25:22 +0530
committerPramod Sivaraman <spramod@codeaurora.org>2013-05-15 17:25:22 +0530
commit4a8e385b868c751fcec76804f438075dbf5dc7ea (patch)
treeae9aa601db3cf470bc6a3e4aa3556737a6ccd49c /Android.mk
parent72667757a44e7c338910ed4cb81294be2565e1ff (diff)
downloadandroid_packages_apps_BluetoothExt-4a8e385b868c751fcec76804f438075dbf5dc7ea.tar.gz
android_packages_apps_BluetoothExt-4a8e385b868c751fcec76804f438075dbf5dc7ea.tar.bz2
android_packages_apps_BluetoothExt-4a8e385b868c751fcec76804f438075dbf5dc7ea.zip
Bluetooth: Introduce BTC Service
Introduce the BTC Service which listen to the Bluetooth related events and send those events to the connected client. BT-WLAN coex module would connect to this socket as client and listen to BT related events Change-Id: Ic8223d6c761bb9e64ce94b83b2a947c1ad87b1d4
Diffstat (limited to 'Android.mk')
-rwxr-xr-xAndroid.mk16
1 files changed, 16 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100755
index 0000000..ebe45cd
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,16 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, src)
+
+LOCAL_PACKAGE_NAME := BluetoothQcom
+LOCAL_CERTIFICATE := platform
+
+LOCAL_PROGUARD_ENABLED := disabled
+
+include $(BUILD_PACKAGE)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))