blob: e06e40398f2a17f9caa2151aff50065123b2640e [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 Erfanian842a9772017-06-22 09:39:08 -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 Erfanianfc0eb8c2017-08-31 06:57:16 -07007# * b/37077388 temporarily disable proguard with javac
8# * b/62875795 include manually generated GRPC service class:
Eric Erfanian91ce7d22017-06-05 13:35:02 -07009# $ 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/" \
Eric Erfanianea7890c2017-06-19 12:40:59 -070011# --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 Erfanian91ce7d22017-06-05 13:35:02 -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 Erfanian842a9772017-06-22 09:39:08 -070040# Exclude build variants for now
41EXCLUDE_FILES += \
Eric Erfanian842a9772017-06-22 09:39:08 -070042 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
43 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070044 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java \
45
46EXCLUDE_RESOURCE_DIRECTORIES := \
47 java/com/android/incallui/maps/impl/res \
Eric Erfanian842a9772017-06-22 09:39:08 -070048
Eric Erfanianccca3152017-02-22 16:32:36 -080049# All Dialers resources.
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070050RES_DIRS := $(call all-subdir-named-dirs,res,.)
51RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070052
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070053EXCLUDE_MANIFESTS := \
54 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
55 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
56 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
57 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Ta-wei Yen90a13e92016-01-11 13:00:53 -080058
Eric Erfanianccca3152017-02-22 16:32:36 -080059# Dialer manifest files to merge.
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070060DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
61DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070062
Eric Erfanianccca3152017-02-22 16:32:36 -080063# Merge all manifest files.
64LOCAL_FULL_LIBS_MANIFEST_FILES := \
65 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
Eric Erfanianb1161672017-08-16 16:33:47 -070066
sail3bcea982017-09-03 13:57:22 -070067LOCAL_SRC_FILES := $(call all-java-files-under, $(BASE_DIR))
68LOCAL_SRC_FILES += $(call all-proto-files-under, $(BASE_DIR))
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070069LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanianb1161672017-08-16 16:33:47 -070070
Eric Erfanian8369df02017-05-03 10:27:13 -070071LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
72
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070073LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
74
75EXCLUDE_EXTRA_PACKAGES := \
76 com.android.dialer.binary.aosp.testing \
77 com.android.dialer.binary.google \
78 com.android.incallui.calllocation.impl \
79 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -080080
81# We specify each package explicitly to glob resource files.
Zachary Heidepriem95fafa82017-11-13 11:11:32 -080082include ${LOCAL_PATH}/packages.mk
Eric Erfanian842a9772017-06-22 09:39:08 -070083
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070084LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
85LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
86LOCAL_AAPT_FLAGS += \
87 --auto-add-overlay \
88 --extra-packages me.leolin.shortcutbadger \
Chiao Cheng94b10b52012-08-17 16:59:12 -070089
Chiao Cheng94b10b52012-08-17 16:59:12 -070090LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -080091 android-common \
Eric Erfanian91ce7d22017-06-05 13:35:02 -070092 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -080093 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -070094 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -070095 dialer-dagger2-target \
96 dialer-disklrucache-target \
97 dialer-gifdecoder-target \
98 dialer-glide-target \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070099 dialer-grpc-all-target \
100 dialer-grpc-context-target \
101 dialer-grpc-core-target \
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700102 dialer-grpc-okhttp-target \
103 dialer-grpc-protobuf-lite-target \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700104 dialer-grpc-stub-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700105 dialer-javax-annotation-api-target \
106 dialer-javax-inject-target \
107 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700108 dialer-mime4j-core-target \
109 dialer-mime4j-dom-target \
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800110 dialer-error-prone-target \
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800111 dialer-guava-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800112 jsr305 \
Eric Erfanianc4bd4e32017-09-05 10:53:21 -0700113 libbackup \
Eric Erfanianccca3152017-02-22 16:32:36 -0800114 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700115 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700116
Alan Viveretteb5870be2017-04-26 11:15:10 -0400117LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700118 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400119 android-support-design \
120 android-support-transition \
121 android-support-v13 \
122 android-support-v4 \
123 android-support-v7-appcompat \
124 android-support-v7-cardview \
125 android-support-v7-recyclerview \
126
Eric Erfanianccca3152017-02-22 16:32:36 -0800127LOCAL_JAVA_LIBRARIES := \
Roland Levillain05d63612017-08-24 14:41:12 +0100128 dialer-auto-value-target \
Eric Erfanian842a9772017-06-22 09:39:08 -0700129 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800130
Roland Levillain05d63612017-08-24 14:41:12 +0100131LOCAL_ANNOTATION_PROCESSORS := \
Eric Erfanian842a9772017-06-22 09:39:08 -0700132 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800133 dialer-dagger2 \
Eric Erfanian842a9772017-06-22 09:39:08 -0700134 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800135 dialer-dagger2-producers \
136 dialer-guava \
137 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700138 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800139
Roland Levillain05d63612017-08-24 14:41:12 +0100140LOCAL_ANNOTATION_PROCESSOR_CLASSES := \
141 com.google.auto.value.processor.AutoValueProcessor,dagger.internal.codegen.ComponentProcessor
Chiao Cheng94b10b52012-08-17 16:59:12 -0700142
Eric Erfanianea7890c2017-06-19 12:40:59 -0700143
144# Begin Bug: 37077388
Eric Erfanian842a9772017-06-22 09:39:08 -0700145LOCAL_DX_FLAGS := --multi-dex
Eric Erfanianea7890c2017-06-19 12:40:59 -0700146LOCAL_JACK_FLAGS := --multi-dex native
147
148LOCAL_PROGUARD_ENABLED := disabled
149ifdef LOCAL_JACK_ENABLED
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700150
151
Eric Erfanian90508232017-03-24 09:31:16 -0700152# Proguard includes
sail3bcea982017-09-03 13:57:22 -0700153LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(BASE_DIR))
Colin Crossf939e092017-04-05 22:13:40 -0700154LOCAL_PROGUARD_ENABLED := custom
155
Colin Crossf939e092017-04-05 22:13:40 -0700156LOCAL_PROGUARD_ENABLED += optimization
157endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700158
Eric Erfanianea7890c2017-06-19 12:40:59 -0700159# End Bug: 37077388
160
Ta-wei Yen6640e552017-04-21 15:33:24 -0700161LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800162LOCAL_MODULE_TAGS := optional
163LOCAL_PACKAGE_NAME := Dialer
164LOCAL_CERTIFICATE := shared
165LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700166LOCAL_USE_AAPT2 := true
167
168# b/37483961 - Jack Not Compiling Dagger Class Properly
169LOCAL_JACK_ENABLED := javac_frontend
170
Chiao Cheng94b10b52012-08-17 16:59:12 -0700171include $(BUILD_PACKAGE)
172
Eric Erfanianccca3152017-02-22 16:32:36 -0800173# Cleanup local state
174BASE_DIR :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700175EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800176RES_DIRS :=
177DIALER_MANIFEST_FILES :=
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700178EXCLUDE_MANIFESTS :=
179EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800180
181# Create references to prebuilt libraries.
182include $(CLEAR_VARS)
183
184LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
zachh3fcd7082018-01-08 20:10:30 +0000185 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 -0800186 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7.jar \
187 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar \
188 dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7.jar \
189 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar \
190 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar \
191 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar \
192 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar \
193 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 +0000194 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800195 dialer-javax-annotation-api:../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar \
196 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanianccca3152017-02-22 16:32:36 -0800197
Roland Levillain05d63612017-08-24 14:41:12 +0100198include $(BUILD_HOST_PREBUILT)
Eric Erfanianccca3152017-02-22 16:32:36 -0800199
Eric Erfanian90508232017-03-24 09:31:16 -0700200# Enumerate target prebuilts to avoid linker warnings like
201# Dialer (java:sdk) should not link to dialer-guava (java:platform)
202include $(CLEAR_VARS)
203
204LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800205LOCAL_MODULE := dialer-guava-target
206LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000207LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800208LOCAL_UNINSTALLABLE_MODULE := true
209
210include $(BUILD_PREBUILT)
211
212include $(CLEAR_VARS)
213
214LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800215LOCAL_MODULE := dialer-error-prone-target
216LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800217LOCAL_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 -0800218LOCAL_UNINSTALLABLE_MODULE := true
219
220include $(BUILD_PREBUILT)
221
222include $(CLEAR_VARS)
223
224LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700225LOCAL_MODULE := dialer-dagger2-target
226LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800227LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700228LOCAL_UNINSTALLABLE_MODULE := true
229
230include $(BUILD_PREBUILT)
231
232include $(CLEAR_VARS)
233
234LOCAL_MODULE_CLASS := JAVA_LIBRARIES
235LOCAL_MODULE := dialer-disklrucache-target
236LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800237LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700238LOCAL_UNINSTALLABLE_MODULE := true
239
240include $(BUILD_PREBUILT)
241
242include $(CLEAR_VARS)
243
244LOCAL_MODULE_CLASS := JAVA_LIBRARIES
245LOCAL_MODULE := dialer-gifdecoder-target
246LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800247LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700248LOCAL_UNINSTALLABLE_MODULE := true
249
250include $(BUILD_PREBUILT)
251
252include $(CLEAR_VARS)
253
254LOCAL_MODULE_CLASS := JAVA_LIBRARIES
255LOCAL_MODULE := dialer-glide-target
256LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800257LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700258LOCAL_UNINSTALLABLE_MODULE := true
259
260include $(BUILD_PREBUILT)
261
262include $(CLEAR_VARS)
263
264LOCAL_MODULE_CLASS := JAVA_LIBRARIES
265LOCAL_MODULE := dialer-javax-annotation-api-target
266LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800267LOCAL_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 -0700268LOCAL_UNINSTALLABLE_MODULE := true
269
270include $(BUILD_PREBUILT)
271
272include $(CLEAR_VARS)
273
274LOCAL_MODULE_CLASS := JAVA_LIBRARIES
275LOCAL_MODULE := dialer-libshortcutbadger-target
276LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800277LOCAL_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 -0700278LOCAL_UNINSTALLABLE_MODULE := true
279
280include $(BUILD_PREBUILT)
281
282include $(CLEAR_VARS)
283
284LOCAL_MODULE_CLASS := JAVA_LIBRARIES
285LOCAL_MODULE := dialer-javax-inject-target
286LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800287LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700288LOCAL_UNINSTALLABLE_MODULE := true
289
290include $(BUILD_PREBUILT)
291
Eric Erfanianccca3152017-02-22 16:32:36 -0800292include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700293
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700294LOCAL_MODULE_CLASS := JAVA_LIBRARIES
295LOCAL_MODULE := dialer-commons-io-target
296LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800297LOCAL_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 -0700298LOCAL_UNINSTALLABLE_MODULE := true
299
300include $(BUILD_PREBUILT)
301
302include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700303
304LOCAL_MODULE_CLASS := JAVA_LIBRARIES
305LOCAL_MODULE := dialer-mime4j-core-target
306LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800307LOCAL_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 -0700308LOCAL_UNINSTALLABLE_MODULE := true
309
310include $(BUILD_PREBUILT)
311
312include $(CLEAR_VARS)
313
314LOCAL_MODULE_CLASS := JAVA_LIBRARIES
315LOCAL_MODULE := dialer-mime4j-dom-target
316LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800317LOCAL_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 -0700318LOCAL_UNINSTALLABLE_MODULE := true
319
320include $(BUILD_PREBUILT)
321
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700322include $(CLEAR_VARS)
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700323
324LOCAL_MODULE_CLASS := JAVA_LIBRARIES
325LOCAL_MODULE := dialer-grpc-core-target
326LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800327LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700328LOCAL_UNINSTALLABLE_MODULE := true
329
330include $(BUILD_PREBUILT)
331
332include $(CLEAR_VARS)
333
334LOCAL_MODULE_CLASS := JAVA_LIBRARIES
335LOCAL_MODULE := dialer-grpc-okhttp-target
336LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800337LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700338LOCAL_UNINSTALLABLE_MODULE := true
339
340include $(BUILD_PREBUILT)
341
342include $(CLEAR_VARS)
343
344LOCAL_MODULE_CLASS := JAVA_LIBRARIES
345LOCAL_MODULE := dialer-grpc-protobuf-lite-target
346LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800347LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700348LOCAL_UNINSTALLABLE_MODULE := true
349
350include $(BUILD_PREBUILT)
351
352include $(CLEAR_VARS)
353
354LOCAL_MODULE_CLASS := JAVA_LIBRARIES
355LOCAL_MODULE := dialer-grpc-stub-target
356LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800357LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3.jar
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700358LOCAL_UNINSTALLABLE_MODULE := true
359
360include $(BUILD_PREBUILT)
361
362include $(CLEAR_VARS)
363
364LOCAL_MODULE_CLASS := JAVA_LIBRARIES
365LOCAL_MODULE := dialer-grpc-all-target
366LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800367LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700368LOCAL_UNINSTALLABLE_MODULE := true
369
370include $(BUILD_PREBUILT)
371
372include $(CLEAR_VARS)
Eric Erfanianea7890c2017-06-19 12:40:59 -0700373
Eric Erfanian842a9772017-06-22 09:39:08 -0700374LOCAL_MODULE_CLASS := JAVA_LIBRARIES
375LOCAL_MODULE := dialer-grpc-context-target
376LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800377LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3.jar
Eric Erfanian842a9772017-06-22 09:39:08 -0700378LOCAL_UNINSTALLABLE_MODULE := true
379
380include $(BUILD_PREBUILT)
381
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700382include $(CLEAR_VARS)
Roland Levillain05d63612017-08-24 14:41:12 +0100383
384LOCAL_MODULE_CLASS := JAVA_LIBRARIES
385LOCAL_MODULE := dialer-auto-value-target
386LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000387LOCAL_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 +0100388LOCAL_UNINSTALLABLE_MODULE := true
389
390include $(BUILD_PREBUILT)
391
392include $(CLEAR_VARS)