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 := \ |
Jeff Davidson | 31db28f | 2014-08-08 13:59:52 -0700 | [diff] [blame] | 7 | $(call all-java-files-under, lib/mapapi) |
Casper Bonde | 326b5e6 | 2014-07-24 13:47:23 +0200 | [diff] [blame] | 8 | |
| 9 | LOCAL_MODULE := bluetooth.mapsapi |
kschulz | 5a60e47 | 2015-03-17 11:47:46 +0100 | [diff] [blame] | 10 | LOCAL_MULTILIB := 32 |
| 11 | include $(BUILD_STATIC_JAVA_LIBRARY) |
Casper Bonde | 326b5e6 | 2014-07-24 13:47:23 +0200 | [diff] [blame] | 12 | |
| 13 | include $(CLEAR_VARS) |
| 14 | |
| 15 | LOCAL_MODULE_TAGS := optional |
| 16 | |
| 17 | LOCAL_SRC_FILES := \ |
Ajay Panicker | 3122e51 | 2016-02-16 10:38:53 -0800 | [diff] [blame] | 18 | $(call all-java-files-under, src) \ |
| 19 | $(call all-proto-files-under, src) |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 20 | |
Tao Liejun | 6769b59 | 2009-07-14 15:55:04 -0700 | [diff] [blame] | 21 | LOCAL_PACKAGE_NAME := Bluetooth |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 22 | LOCAL_CERTIFICATE := platform |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 23 | |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 24 | LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni |
Erik Kline | fe0f221 | 2016-02-17 22:52:02 +0900 | [diff] [blame] | 25 | LOCAL_JAVA_LIBRARIES := javax.obex telephony-common libprotobuf-java-micro services.net |
| 26 | LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard bluetooth.mapsapi sap-api-java-static android-support-v4 services.net |
B--B | b08e92d | 2016-11-07 21:21:54 +0100 | [diff] [blame] | 27 | LOCAL_STATIC_JAVA_LIBRARIES += com.android.emailcommon |
Ajay Panicker | 3122e51 | 2016-02-16 10:38:53 -0800 | [diff] [blame] | 28 | LOCAL_PROTOC_OPTIMIZE_TYPE := micro |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 29 | |
Ying Wang | cd97080 | 2014-04-17 18:24:27 -0700 | [diff] [blame] | 30 | LOCAL_REQUIRED_MODULES := bluetooth.default |
Narayan Kamath | 05a3b35 | 2014-05-07 11:20:06 +0100 | [diff] [blame] | 31 | LOCAL_MULTILIB := 32 |
Jaikumar Ganesh | ff4f17b | 2011-12-19 15:54:50 -0800 | [diff] [blame] | 32 | |
| 33 | LOCAL_PROGUARD_ENABLED := disabled |
Jackson Fan | 239bc52 | 2009-07-27 15:58:22 +0800 | [diff] [blame] | 34 | |
Nick Pelly | 09e9cba | 2009-07-10 18:45:13 -0700 | [diff] [blame] | 35 | include $(BUILD_PACKAGE) |
Jaikumar Ganesh | f91e79c | 2012-02-16 17:46:00 -0800 | [diff] [blame] | 36 | |
Ying Wang | ed4da7d | 2014-06-13 12:58:20 -0700 | [diff] [blame] | 37 | include $(call all-makefiles-under,$(LOCAL_PATH)) |