blob: 4059ca08ffb613d503236d041a3b78240a4db581 [file] [log] [blame]
Eric Erfanianccca3152017-02-22 16:32:36 -08001# Local modifications:
Eric Erfanian9a090c82017-03-16 19:22:24 -07002# * removed com.google.android.geo.API_KEY key. This should be added to
3# the manifest files in java/com/android/incallui/calllocation/impl/
4# and /java/com/android/incallui/maps/impl/
Eric Erfanian3bb96412017-06-22 10:19:53 -07005# * b/62417801 modify translation string naming convention:
6# $ find . -type d | grep 262 | rename 's/(values)\-([a-zA-Z\+\-]+)\-(mcc262-mnc01)/$1-$3-$2/'
Eric Erfanian3bb96412017-06-22 10:19:53 -07007# * b/37077388 temporarily disable proguard with javac
Eric Erfanian939cdf02017-08-29 08:49:58 -07008# * b/62875795 include manually generated GRPC service class:
9# $ protoc --plugin=protoc-gen-grpc-java=prebuilts/tools/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-linux-x86_64.exe \
10# --grpc-java_out=lite:"packages/apps/Dialer/java/com/android/voicemail/impl/" \
11# --proto_path="packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/" "packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/voicemail_transcription.proto"
Chiao Cheng94b10b52012-08-17 16:59:12 -070012LOCAL_PATH:= $(call my-dir)
13include $(CLEAR_VARS)
14
Eric Erfanianccca3152017-02-22 16:32:36 -080015# The base directory for Dialer sources.
16BASE_DIR := java/com/android
Jay Shrauner0f68a712014-07-16 16:13:57 -070017
Eric Erfaniand5e47f62017-03-15 14:41:07 -070018# Exclude files incompatible with AOSP.
19EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070020 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
21 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
22 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
23 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
24 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
25 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
26 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
27 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
28 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
29 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
30 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
31 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
32 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
33 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070034 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070035
Paul Duffin922b1082017-05-05 15:05:47 +010036# Exclude testing only class, not used anywhere here
37EXCLUDE_FILES += \
38 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
39
Eric Erfanian3bb96412017-06-22 10:19:53 -070040# Exclude build variants for now
41EXCLUDE_FILES += \
Eric Erfanian3bb96412017-06-22 10:19:53 -070042 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
43 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
Eric Erfanian939cdf02017-08-29 08:49:58 -070044 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java \
45
46# * b/62875795
47ifneq ($(wildcard packages/apps/Dialer/java/com/android/voicemail/impl/com/google/internal/communications/voicemailtranscription/v1/VoicemailTranscriptionServiceGrpc.java),)
48$(error Please remove file packages/apps/Dialer/java/com/android/voicemail/impl/com/google/internal/communications/voicemailtranscription/v1/VoicemailTranscriptionServiceGrpc.java )
49endif
Eric Erfanian3bb96412017-06-22 10:19:53 -070050
Eric Erfanian415dffb2017-08-08 14:32:39 -070051EXCLUDE_RESOURCE_DIRECTORIES := \
52 java/com/android/incallui/maps/impl/res \
53
Eric Erfanianccca3152017-02-22 16:32:36 -080054# All Dialers resources.
Eric Erfanian415dffb2017-08-08 14:32:39 -070055RES_DIRS := $(call all-subdir-named-dirs,res,.)
56RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070057
Eric Erfanian415dffb2017-08-08 14:32:39 -070058EXCLUDE_MANIFESTS := \
59 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
60 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
61 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
62 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Eric Erfanian9b4d9bc2017-07-25 09:36:19 -070063
Eric Erfanianccca3152017-02-22 16:32:36 -080064# Dialer manifest files to merge.
Eric Erfanian415dffb2017-08-08 14:32:39 -070065DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
66DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070067
Eric Erfanianccca3152017-02-22 16:32:36 -080068# Merge all manifest files.
69LOCAL_FULL_LIBS_MANIFEST_FILES := \
70 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
Eric Erfanian1ce79b92017-08-10 08:11:26 -070071
sail3bcea982017-09-03 13:57:22 -070072LOCAL_SRC_FILES := $(call all-java-files-under, $(BASE_DIR))
73LOCAL_SRC_FILES += $(call all-proto-files-under, $(BASE_DIR))
Eric Erfanian939cdf02017-08-29 08:49:58 -070074LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanian9bdb5032017-08-09 15:37:50 -070075
Eric Erfanian8369df02017-05-03 10:27:13 -070076LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
77
Eric Erfanian415dffb2017-08-08 14:32:39 -070078LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
79
Eric Erfanian415dffb2017-08-08 14:32:39 -070080EXCLUDE_EXTRA_PACKAGES := \
81 com.android.dialer.binary.aosp.testing \
82 com.android.dialer.binary.google \
83 com.android.incallui.calllocation.impl \
84 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -080085
86# We specify each package explicitly to glob resource files.
Zachary Heidepriem95fafa82017-11-13 11:11:32 -080087include ${LOCAL_PATH}/packages.mk
Eric Erfanian5aaa9492017-08-29 17:33:38 -070088
Eric Erfanian415dffb2017-08-08 14:32:39 -070089LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
90LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
91LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -080092 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -070093 --extra-packages me.leolin.shortcutbadger \
94
Chiao Cheng94b10b52012-08-17 16:59:12 -070095LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -080096 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070097 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -080098 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -070099 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700100 dialer-dagger2-target \
101 dialer-disklrucache-target \
102 dialer-gifdecoder-target \
103 dialer-glide-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700104 dialer-grpc-all-target \
105 dialer-grpc-context-target \
106 dialer-grpc-core-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700107 dialer-grpc-okhttp-target \
108 dialer-grpc-protobuf-lite-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700109 dialer-grpc-stub-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700110 dialer-javax-annotation-api-target \
111 dialer-javax-inject-target \
112 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700113 dialer-mime4j-core-target \
114 dialer-mime4j-dom-target \
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800115 dialer-error-prone-target \
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800116 dialer-guava-target \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800117 dialer-glide-target \
118 dialer-glide-annotation-target \
roldenburg9c9175f2018-02-15 15:22:24 -0800119 dialer-zxing-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800120 jsr305 \
Eric Erfanian9bfcb3d2017-09-05 10:53:21 -0700121 libbackup \
Eric Erfanianccca3152017-02-22 16:32:36 -0800122 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700123 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700124
Alan Viveretteb5870be2017-04-26 11:15:10 -0400125LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700126 android-support-core-ui \
Alan Viverette423e2932018-02-01 15:52:28 -0500127 $(ANDROID_SUPPORT_DESIGN_TARGETS) \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400128 android-support-transition \
129 android-support-v13 \
130 android-support-v4 \
131 android-support-v7-appcompat \
132 android-support-v7-cardview \
133 android-support-v7-recyclerview \
134
Eric Erfanianccca3152017-02-22 16:32:36 -0800135LOCAL_JAVA_LIBRARIES := \
Roland Levillain05d63612017-08-24 14:41:12 +0100136 dialer-auto-value-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700137 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800138
Roland Levillain05d63612017-08-24 14:41:12 +0100139LOCAL_ANNOTATION_PROCESSORS := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700140 dialer-auto-value \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800141 dialer-javapoet \
Eric Erfanianccca3152017-02-22 16:32:36 -0800142 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700143 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800144 dialer-dagger2-producers \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800145 dialer-glide-annotation \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800146 dialer-glide-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800147 dialer-guava \
148 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700149 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800150
Roland Levillain05d63612017-08-24 14:41:12 +0100151LOCAL_ANNOTATION_PROCESSOR_CLASSES := \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800152 com.google.auto.value.processor.AutoValueProcessor,dagger.internal.codegen.ComponentProcessor,com.bumptech.glide.annotation.compiler.GlideAnnotationProcessor
Chiao Cheng94b10b52012-08-17 16:59:12 -0700153
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700154
155# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700156LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700157LOCAL_JACK_FLAGS := --multi-dex native
158
159LOCAL_PROGUARD_ENABLED := disabled
160ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700161
Eric Erfanian415dffb2017-08-08 14:32:39 -0700162
Eric Erfanian90508232017-03-24 09:31:16 -0700163# Proguard includes
sail3bcea982017-09-03 13:57:22 -0700164LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(BASE_DIR))
Colin Crossf939e092017-04-05 22:13:40 -0700165LOCAL_PROGUARD_ENABLED := custom
166
Colin Crossf939e092017-04-05 22:13:40 -0700167LOCAL_PROGUARD_ENABLED += optimization
168endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700169
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700170# End Bug: 37077388
171
Ta-wei Yen6640e552017-04-21 15:33:24 -0700172LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800173LOCAL_MODULE_TAGS := optional
174LOCAL_PACKAGE_NAME := Dialer
175LOCAL_CERTIFICATE := shared
176LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700177LOCAL_USE_AAPT2 := true
178
179# b/37483961 - Jack Not Compiling Dagger Class Properly
180LOCAL_JACK_ENABLED := javac_frontend
181
Chiao Cheng94b10b52012-08-17 16:59:12 -0700182include $(BUILD_PACKAGE)
183
Eric Erfanianccca3152017-02-22 16:32:36 -0800184# Cleanup local state
185BASE_DIR :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700186EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800187RES_DIRS :=
188DIALER_MANIFEST_FILES :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700189EXCLUDE_MANIFESTS :=
190EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800191
192# Create references to prebuilt libraries.
193include $(CLEAR_VARS)
194
195LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
zachh3fcd7082018-01-08 20:10:30 +0000196 dialer-auto-value:../../../prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/auto-value-1.5.2.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800197 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7.jar \
198 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar \
199 dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7.jar \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800200 dialer-glide-annotation:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar \
201 dialer-glide-compiler:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800202 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar \
203 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar \
204 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar \
205 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar \
206 dialer-grpc-stub:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar \
zachh3fcd7082018-01-08 20:10:30 +0000207 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800208 dialer-javax-annotation-api:../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800209 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar \
210 dialer-javapoet:../../../prebuilts/tools/common/m2/repository/com/squareup/javapoet/1.8.0/javapoet-1.8.0.jar \
Eric Erfanianccca3152017-02-22 16:32:36 -0800211
Roland Levillain05d63612017-08-24 14:41:12 +0100212include $(BUILD_HOST_PREBUILT)
Eric Erfanianccca3152017-02-22 16:32:36 -0800213
Eric Erfanian90508232017-03-24 09:31:16 -0700214# Enumerate target prebuilts to avoid linker warnings like
215# Dialer (java:sdk) should not link to dialer-guava (java:platform)
216include $(CLEAR_VARS)
217
218LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800219LOCAL_MODULE := dialer-guava-target
220LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000221LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800222LOCAL_UNINSTALLABLE_MODULE := true
223
224include $(BUILD_PREBUILT)
225
226include $(CLEAR_VARS)
227
228LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800229LOCAL_MODULE := dialer-error-prone-target
230LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800231LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/errorprone/error_prone_annotations/2.0.18/error_prone_annotations-2.0.18.jar
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800232LOCAL_UNINSTALLABLE_MODULE := true
233
234include $(BUILD_PREBUILT)
235
236include $(CLEAR_VARS)
237
238LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700239LOCAL_MODULE := dialer-dagger2-target
240LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800241LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700242LOCAL_UNINSTALLABLE_MODULE := true
243
244include $(BUILD_PREBUILT)
245
246include $(CLEAR_VARS)
247
248LOCAL_MODULE_CLASS := JAVA_LIBRARIES
249LOCAL_MODULE := dialer-disklrucache-target
250LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800251LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700252LOCAL_UNINSTALLABLE_MODULE := true
253
254include $(BUILD_PREBUILT)
255
256include $(CLEAR_VARS)
257
258LOCAL_MODULE_CLASS := JAVA_LIBRARIES
259LOCAL_MODULE := dialer-gifdecoder-target
260LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800261LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700262LOCAL_UNINSTALLABLE_MODULE := true
263
264include $(BUILD_PREBUILT)
265
266include $(CLEAR_VARS)
267
268LOCAL_MODULE_CLASS := JAVA_LIBRARIES
269LOCAL_MODULE := dialer-glide-target
270LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800271LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700272LOCAL_UNINSTALLABLE_MODULE := true
273
274include $(BUILD_PREBUILT)
275
276include $(CLEAR_VARS)
277
278LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800279LOCAL_MODULE := dialer-glide-annotation-target
280LOCAL_SDK_VERSION := current
281LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar
282LOCAL_UNINSTALLABLE_MODULE := true
283
284include $(BUILD_PREBUILT)
285
286include $(CLEAR_VARS)
287
288LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700289LOCAL_MODULE := dialer-javax-annotation-api-target
290LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800291LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700292LOCAL_UNINSTALLABLE_MODULE := true
293
294include $(BUILD_PREBUILT)
295
296include $(CLEAR_VARS)
297
298LOCAL_MODULE_CLASS := JAVA_LIBRARIES
299LOCAL_MODULE := dialer-libshortcutbadger-target
300LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800301LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700302LOCAL_UNINSTALLABLE_MODULE := true
303
304include $(BUILD_PREBUILT)
305
306include $(CLEAR_VARS)
307
308LOCAL_MODULE_CLASS := JAVA_LIBRARIES
309LOCAL_MODULE := dialer-javax-inject-target
310LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800311LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700312LOCAL_UNINSTALLABLE_MODULE := true
313
314include $(BUILD_PREBUILT)
315
Eric Erfanianccca3152017-02-22 16:32:36 -0800316include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700317
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700318LOCAL_MODULE_CLASS := JAVA_LIBRARIES
319LOCAL_MODULE := dialer-commons-io-target
320LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800321LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4.jar
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700322LOCAL_UNINSTALLABLE_MODULE := true
323
324include $(BUILD_PREBUILT)
325
326include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700327
328LOCAL_MODULE_CLASS := JAVA_LIBRARIES
329LOCAL_MODULE := dialer-mime4j-core-target
330LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800331LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2.jar
Eric Erfanian8369df02017-05-03 10:27:13 -0700332LOCAL_UNINSTALLABLE_MODULE := true
333
334include $(BUILD_PREBUILT)
335
336include $(CLEAR_VARS)
337
338LOCAL_MODULE_CLASS := JAVA_LIBRARIES
339LOCAL_MODULE := dialer-mime4j-dom-target
340LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800341LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2.jar
Eric Erfanian8369df02017-05-03 10:27:13 -0700342LOCAL_UNINSTALLABLE_MODULE := true
343
344include $(BUILD_PREBUILT)
345
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700346include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700347
348LOCAL_MODULE_CLASS := JAVA_LIBRARIES
349LOCAL_MODULE := dialer-grpc-core-target
350LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800351LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700352LOCAL_UNINSTALLABLE_MODULE := true
353
354include $(BUILD_PREBUILT)
355
356include $(CLEAR_VARS)
357
358LOCAL_MODULE_CLASS := JAVA_LIBRARIES
359LOCAL_MODULE := dialer-grpc-okhttp-target
360LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800361LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700362LOCAL_UNINSTALLABLE_MODULE := true
363
364include $(BUILD_PREBUILT)
365
366include $(CLEAR_VARS)
367
368LOCAL_MODULE_CLASS := JAVA_LIBRARIES
369LOCAL_MODULE := dialer-grpc-protobuf-lite-target
370LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800371LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700372LOCAL_UNINSTALLABLE_MODULE := true
373
374include $(BUILD_PREBUILT)
375
376include $(CLEAR_VARS)
377
378LOCAL_MODULE_CLASS := JAVA_LIBRARIES
379LOCAL_MODULE := dialer-grpc-stub-target
380LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800381LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700382LOCAL_UNINSTALLABLE_MODULE := true
383
384include $(BUILD_PREBUILT)
385
386include $(CLEAR_VARS)
387
388LOCAL_MODULE_CLASS := JAVA_LIBRARIES
389LOCAL_MODULE := dialer-grpc-all-target
390LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800391LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700392LOCAL_UNINSTALLABLE_MODULE := true
393
394include $(BUILD_PREBUILT)
395
396include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700397
398LOCAL_MODULE_CLASS := JAVA_LIBRARIES
399LOCAL_MODULE := dialer-grpc-context-target
400LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800401LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar
Eric Erfanian3bb96412017-06-22 10:19:53 -0700402LOCAL_UNINSTALLABLE_MODULE := true
403
404include $(BUILD_PREBUILT)
405
wangqi69674662017-06-29 13:14:51 -0700406include $(CLEAR_VARS)
Roland Levillain05d63612017-08-24 14:41:12 +0100407
408LOCAL_MODULE_CLASS := JAVA_LIBRARIES
409LOCAL_MODULE := dialer-auto-value-target
410LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000411LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/auto-value-1.5.2.jar
Roland Levillain05d63612017-08-24 14:41:12 +0100412LOCAL_UNINSTALLABLE_MODULE := true
413
414include $(BUILD_PREBUILT)
415
416include $(CLEAR_VARS)
roldenburg9c9175f2018-02-15 15:22:24 -0800417
418LOCAL_MODULE_CLASS := JAVA_LIBRARIES
419LOCAL_MODULE := dialer-zxing-target
420LOCAL_SDK_VERSION := current
421LOCAL_SRC_FILES := ../../../external/zxing/core/core.jar
422LOCAL_UNINSTALLABLE_MODULE := true
423
424include $(BUILD_PREBUILT)
425
426include $(CLEAR_VARS)
427