blob: bbcacb6028a4f27ab34c1ab1a060e6da7c4b4fa7 [file] [log] [blame]
Narayan Kamatha77fadd2014-12-18 11:56:40 +00001#
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
16LOCAL_PATH := $(call my-dir)
17
18# For the platform, compile everything except the carrier to phone number
19# which isn't used.
20libphonenumber_platform_resource_dirs := \
21 libphonenumber/src \
22 geocoder/src \
23 internal/prefixmapper/src
24
25libphonenumber_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
30libphonenumber_src_files := \
31 $(libphonenumber_platform_src_files) \
32 $(call all-java-files-under, carrier/src)
33
34libphonenumber_resource_dirs := \
35 $(libphonenumber_platform_resource_dirs) \
36 carrier/src
37
Neil Fuller47e24082015-09-18 15:07:41 +010038libphonenumber_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
44libphonenumber_test_resource_dirs := \
45 carrier/test \
46 geocoder/test \
47 libphonenumber/test
48
Narayan Kamatha77fadd2014-12-18 11:56:40 +000049# For platform use, builds directly against core-libart to avoid circular
50# dependencies. *NOT* for unbundled use.
51include $(CLEAR_VARS)
52LOCAL_MODULE := libphonenumber-platform
53LOCAL_MODULE_TAGS := optional
54LOCAL_SRC_FILES := $(libphonenumber_platform_src_files)
55LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_platform_resource_dirs)
Narayan Kamatha77fadd2014-12-18 11:56:40 +000056LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
57LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
58LOCAL_NO_STANDARD_LIBRARIES := true
Przemyslaw Szczepaniak1c3dadb2015-11-18 17:28:57 +000059LOCAL_JAVA_LIBRARIES := core-oj core-libart
Paul Duffin6b489f72015-12-07 15:54:05 +000060LOCAL_STATIC_JAVA_LIBRARIES := libprotobuf-java-nano
Neil Fuller365cb132016-02-16 13:20:14 +000061LOCAL_JAVA_LANGUAGE_VERSION := 1.7
Narayan Kamatha77fadd2014-12-18 11:56:40 +000062include $(BUILD_STATIC_JAVA_LIBRARY)
63
64# For unbundled use, supports gingerbread and up.
65include $(CLEAR_VARS)
Narayan Kamath0bb00232015-01-06 10:09:50 +000066LOCAL_MODULE := libphonenumber
Narayan Kamatha77fadd2014-12-18 11:56:40 +000067LOCAL_MODULE_TAGS := optional
68LOCAL_SRC_FILES := $(libphonenumber_src_files)
69LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_resource_dirs)
Narayan Kamatha77fadd2014-12-18 11:56:40 +000070LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
71LOCAL_SDK_VERSION := 9
Paul Duffin3bd754c2015-12-11 10:34:27 +000072LOCAL_STATIC_JAVA_LIBRARIES := libprotobuf-java-nano
Neil Fuller365cb132016-02-16 13:20:14 +000073LOCAL_JAVA_LANGUAGE_VERSION := 1.7
Narayan Kamatha77fadd2014-12-18 11:56:40 +000074include $(BUILD_STATIC_JAVA_LIBRARY)
Neil Fuller47e24082015-09-18 15:07:41 +010075
76# Tests for unbundled use.
Paul Duffin6b489f72015-12-07 15:54:05 +000077# vogar --timeout 0 \
78 --classpath out/target/common/obj/JAVA_LIBRARIES/libphonenumber-test_intermediates/classes.jar \
79 com.google.i18n.phonenumbers
Neil Fuller47e24082015-09-18 15:07:41 +010080include $(CLEAR_VARS)
81LOCAL_MODULE := libphonenumber-test
82LOCAL_MODULE_TAGS := optional
83LOCAL_SRC_FILES := $(libphonenumber_test_files)
84LOCAL_JAVA_RESOURCE_DIRS := $(libphonenumber_test_resource_dirs)
85LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
86LOCAL_SDK_VERSION := current
Paul Duffin6b489f72015-12-07 15:54:05 +000087LOCAL_STATIC_JAVA_LIBRARIES := libphonenumber libprotobuf-java-nano
Neil Fuller365cb132016-02-16 13:20:14 +000088LOCAL_JAVA_LANGUAGE_VERSION := 1.7
Neil Fuller47e24082015-09-18 15:07:41 +010089include $(BUILD_STATIC_JAVA_LIBRARY)