1 # 2 # Copyright (C) 2014 The Android Open Source Project 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # http://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 16 LOCAL_PATH := $(call my-dir) 17 18 # For the platform, compile everything except the carrier to phone number 19 # which isn't used. 20 libphonenumber_platform_resource_dirs := \ 21 libphonenumber/src \ 22 geocoder/src \ 23 internal/prefixmapper/src 24 25 libphonenumber_platform_src_files := \ 26 $(call all-java-files-under, libphonenumber/src) \ 27 $(call all-java-files-under, geocoder/src) \ 28 $(call all-java-files-under, internal/prefixmapper/src) \ 29 30 libphonenumber_src_files := \ 31 $(libphonenumber_platform_src_files) \ 32 $(call all-java-files-under, carrier/src) 33 34 libphonenumber_resource_dirs := \ 35 $(libphonenumber_platform_resource_dirs) \ 36 carrier/src 37 38 libphonenumber_test_files := \ 39 $(call all-java-files-under, carrier/test) \ 40 $(call all-java-files-under, geocoder/test) \ 41 $(call all-java-files-under, internal/prefixmapper/test) \ 42 $(call all-java-files-under, libphonenumber/test) 43 44 libphonenumber_test_resource_dirs := \ 45 carrier/test \ 46 geocoder/test \ 47 libphonenumber/test 48 49 # For platform use, builds directly against core-libart to avoid circular 50 # dependencies. *NOT* for unbundled use. 51 include $(CLEAR_VARS) 52 LOCAL_MODULE := libphonenumber-platform 53 LOCAL_MODULE_TAGS := optional 54 LOCAL_SRC_FILES := $(libphonenumber_platform_src_files) 55 LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_platform_resource_dirs) 56 LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt 57 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 58 LOCAL_NO_STANDARD_LIBRARIES := true 59 LOCAL_JAVA_LIBRARIES := core-oj core-libart 60 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 61 include $(BUILD_STATIC_JAVA_LIBRARY) 62 63 # For unbundled use, supports gingerbread and up. 64 include $(CLEAR_VARS) 65 LOCAL_MODULE := libphonenumber 66 LOCAL_MODULE_TAGS := optional 67 LOCAL_SRC_FILES := $(libphonenumber_src_files) 68 LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_resource_dirs) 69 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 70 LOCAL_SDK_VERSION := 9 71 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 72 include $(BUILD_STATIC_JAVA_LIBRARY) 73 74 # Tests for unbundled use. 75 # vogar --timeout 0 --classpath out/target/common/obj/JAVA_LIBRARIES/libphonenumber_intermediates/classes.jar \ 76 # --classpath out/target/common/obj/JAVA_LIBRARIES/libphonenumber-test_intermediates/classes.jar \ 77 # com.google.i18n.phonenumbers 78 include $(CLEAR_VARS) 79 LOCAL_MODULE := libphonenumber-test 80 LOCAL_MODULE_TAGS := optional 81 LOCAL_SRC_FILES := $(libphonenumber_test_files) 82 LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_test_resource_dirs) 83 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 84 LOCAL_SDK_VERSION := current 85 LOCAL_STATIC_JAVA_LIBRARIES := libphonenumber 86 LOCAL_JAVA_LANGUAGE_VERSION := 1.7 87 include $(BUILD_STATIC_JAVA_LIBRARY) 88