Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
2 | include $(CLEAR_VARS) | ||||
3 | |||||
Jean-Baptiste Queru | 36cb6d3 | 2010-01-05 16:27:20 -0800 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := optional |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 5 | |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 6 | LOCAL_SRC_FILES := \ |
7 | $(call all-java-files-under, src) | ||||
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 8 | |
Tao Liejun | 6769b59 | 2009-07-14 15:55:04 -0700 | [diff] [blame] | 9 | LOCAL_PACKAGE_NAME := Bluetooth |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 10 | LOCAL_CERTIFICATE := platform |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 11 | |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 12 | LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 13 | LOCAL_JAVA_LIBRARIES := javax.obex |
Daisuke Miyakawa | 12cb33f | 2010-05-17 08:24:44 -0700 | [diff] [blame] | 14 | LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 15 | |
Chia-chi Yeh | 0de39b7 | 2012-03-06 16:15:47 -0800 | [diff] [blame^] | 16 | LOCAL_REQUIRED_MODULES := libbluetooth_jni bluetooth.default |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 17 | |
18 | LOCAL_PROGUARD_ENABLED := disabled | ||||
Jackson Fan | 239bc52 | 2009-07-27 15:58:22 +0800 | [diff] [blame] | 19 | |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 20 | include $(BUILD_PACKAGE) |
Jaikumar Ganesh | f91e79c | 2012-02-16 17:46:00 -0800 | [diff] [blame] | 21 | |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 22 | include $(call all-makefiles-under,$(LOCAL_PATH)) |