blob: ddfad3ee10a1b1cb05df0da3b86ad5785bffb325 [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 \
Eric Erfanianccca3152017-02-22 16:32:36 -0800117 jsr305 \
Eric Erfanian9bfcb3d2017-09-05 10:53:21 -0700118 libbackup \
Eric Erfanianccca3152017-02-22 16:32:36 -0800119 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700120 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700121
Alan Viveretteb5870be2017-04-26 11:15:10 -0400122LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700123 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400124 android-support-design \
125 android-support-transition \
126 android-support-v13 \
127 android-support-v4 \
128 android-support-v7-appcompat \
129 android-support-v7-cardview \
130 android-support-v7-recyclerview \
131
Eric Erfanianccca3152017-02-22 16:32:36 -0800132LOCAL_JAVA_LIBRARIES := \
Roland Levillain05d63612017-08-24 14:41:12 +0100133 dialer-auto-value-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700134 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800135
Roland Levillain05d63612017-08-24 14:41:12 +0100136LOCAL_ANNOTATION_PROCESSORS := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700137 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800138 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700139 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800140 dialer-dagger2-producers \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800141 dialer-glide-compiler \
142 dialer-glide-annotation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800143 dialer-guava \
144 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700145 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800146
Roland Levillain05d63612017-08-24 14:41:12 +0100147LOCAL_ANNOTATION_PROCESSOR_CLASSES := \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800148 com.google.auto.value.processor.AutoValueProcessor,dagger.internal.codegen.ComponentProcessor,com.bumptech.glide.annotation.compiler.GlideAnnotationProcessor
Chiao Cheng94b10b52012-08-17 16:59:12 -0700149
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700150
151# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700152LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700153LOCAL_JACK_FLAGS := --multi-dex native
154
155LOCAL_PROGUARD_ENABLED := disabled
156ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700157
Eric Erfanian415dffb2017-08-08 14:32:39 -0700158
Eric Erfanian90508232017-03-24 09:31:16 -0700159# Proguard includes
sail3bcea982017-09-03 13:57:22 -0700160LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(BASE_DIR))
Colin Crossf939e092017-04-05 22:13:40 -0700161LOCAL_PROGUARD_ENABLED := custom
162
Colin Crossf939e092017-04-05 22:13:40 -0700163LOCAL_PROGUARD_ENABLED += optimization
164endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700165
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700166# End Bug: 37077388
167
Ta-wei Yen6640e552017-04-21 15:33:24 -0700168LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800169LOCAL_MODULE_TAGS := optional
170LOCAL_PACKAGE_NAME := Dialer
171LOCAL_CERTIFICATE := shared
172LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700173LOCAL_USE_AAPT2 := true
174
175# b/37483961 - Jack Not Compiling Dagger Class Properly
176LOCAL_JACK_ENABLED := javac_frontend
177
Chiao Cheng94b10b52012-08-17 16:59:12 -0700178include $(BUILD_PACKAGE)
179
Eric Erfanianccca3152017-02-22 16:32:36 -0800180# Cleanup local state
181BASE_DIR :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700182EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800183RES_DIRS :=
184DIALER_MANIFEST_FILES :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700185EXCLUDE_MANIFESTS :=
186EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800187
188# Create references to prebuilt libraries.
189include $(CLEAR_VARS)
190
191LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
zachh3fcd7082018-01-08 20:10:30 +0000192 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 -0800193 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7.jar \
194 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar \
195 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 -0800196 dialer-glide-annotation:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar \
197 dialer-glide-compiler:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800198 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar \
199 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar \
200 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar \
201 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar \
202 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 +0000203 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800204 dialer-javax-annotation-api:../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2.jar \
205 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanianccca3152017-02-22 16:32:36 -0800206
Roland Levillain05d63612017-08-24 14:41:12 +0100207include $(BUILD_HOST_PREBUILT)
Eric Erfanianccca3152017-02-22 16:32:36 -0800208
Eric Erfanian90508232017-03-24 09:31:16 -0700209# Enumerate target prebuilts to avoid linker warnings like
210# Dialer (java:sdk) should not link to dialer-guava (java:platform)
211include $(CLEAR_VARS)
212
213LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800214LOCAL_MODULE := dialer-guava-target
215LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000216LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800217LOCAL_UNINSTALLABLE_MODULE := true
218
219include $(BUILD_PREBUILT)
220
221include $(CLEAR_VARS)
222
223LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800224LOCAL_MODULE := dialer-error-prone-target
225LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800226LOCAL_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 -0800227LOCAL_UNINSTALLABLE_MODULE := true
228
229include $(BUILD_PREBUILT)
230
231include $(CLEAR_VARS)
232
233LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700234LOCAL_MODULE := dialer-dagger2-target
235LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800236LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700237LOCAL_UNINSTALLABLE_MODULE := true
238
239include $(BUILD_PREBUILT)
240
241include $(CLEAR_VARS)
242
243LOCAL_MODULE_CLASS := JAVA_LIBRARIES
244LOCAL_MODULE := dialer-disklrucache-target
245LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800246LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700247LOCAL_UNINSTALLABLE_MODULE := true
248
249include $(BUILD_PREBUILT)
250
251include $(CLEAR_VARS)
252
253LOCAL_MODULE_CLASS := JAVA_LIBRARIES
254LOCAL_MODULE := dialer-gifdecoder-target
255LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800256LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700257LOCAL_UNINSTALLABLE_MODULE := true
258
259include $(BUILD_PREBUILT)
260
261include $(CLEAR_VARS)
262
263LOCAL_MODULE_CLASS := JAVA_LIBRARIES
264LOCAL_MODULE := dialer-glide-target
265LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800266LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700267LOCAL_UNINSTALLABLE_MODULE := true
268
269include $(BUILD_PREBUILT)
270
271include $(CLEAR_VARS)
272
273LOCAL_MODULE_CLASS := JAVA_LIBRARIES
274LOCAL_MODULE := dialer-javax-annotation-api-target
275LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800276LOCAL_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 -0700277LOCAL_UNINSTALLABLE_MODULE := true
278
279include $(BUILD_PREBUILT)
280
281include $(CLEAR_VARS)
282
283LOCAL_MODULE_CLASS := JAVA_LIBRARIES
284LOCAL_MODULE := dialer-libshortcutbadger-target
285LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800286LOCAL_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 -0700287LOCAL_UNINSTALLABLE_MODULE := true
288
289include $(BUILD_PREBUILT)
290
291include $(CLEAR_VARS)
292
293LOCAL_MODULE_CLASS := JAVA_LIBRARIES
294LOCAL_MODULE := dialer-javax-inject-target
295LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800296LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700297LOCAL_UNINSTALLABLE_MODULE := true
298
299include $(BUILD_PREBUILT)
300
Eric Erfanianccca3152017-02-22 16:32:36 -0800301include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700302
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700303LOCAL_MODULE_CLASS := JAVA_LIBRARIES
304LOCAL_MODULE := dialer-commons-io-target
305LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800306LOCAL_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 -0700307LOCAL_UNINSTALLABLE_MODULE := true
308
309include $(BUILD_PREBUILT)
310
311include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700312
313LOCAL_MODULE_CLASS := JAVA_LIBRARIES
314LOCAL_MODULE := dialer-mime4j-core-target
315LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800316LOCAL_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 -0700317LOCAL_UNINSTALLABLE_MODULE := true
318
319include $(BUILD_PREBUILT)
320
321include $(CLEAR_VARS)
322
323LOCAL_MODULE_CLASS := JAVA_LIBRARIES
324LOCAL_MODULE := dialer-mime4j-dom-target
325LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800326LOCAL_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 -0700327LOCAL_UNINSTALLABLE_MODULE := true
328
329include $(BUILD_PREBUILT)
330
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700331include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700332
333LOCAL_MODULE_CLASS := JAVA_LIBRARIES
334LOCAL_MODULE := dialer-grpc-core-target
335LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800336LOCAL_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 -0700337LOCAL_UNINSTALLABLE_MODULE := true
338
339include $(BUILD_PREBUILT)
340
341include $(CLEAR_VARS)
342
343LOCAL_MODULE_CLASS := JAVA_LIBRARIES
344LOCAL_MODULE := dialer-grpc-okhttp-target
345LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800346LOCAL_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 -0700347LOCAL_UNINSTALLABLE_MODULE := true
348
349include $(BUILD_PREBUILT)
350
351include $(CLEAR_VARS)
352
353LOCAL_MODULE_CLASS := JAVA_LIBRARIES
354LOCAL_MODULE := dialer-grpc-protobuf-lite-target
355LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800356LOCAL_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 -0700357LOCAL_UNINSTALLABLE_MODULE := true
358
359include $(BUILD_PREBUILT)
360
361include $(CLEAR_VARS)
362
363LOCAL_MODULE_CLASS := JAVA_LIBRARIES
364LOCAL_MODULE := dialer-grpc-stub-target
365LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800366LOCAL_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 -0700367LOCAL_UNINSTALLABLE_MODULE := true
368
369include $(BUILD_PREBUILT)
370
371include $(CLEAR_VARS)
372
373LOCAL_MODULE_CLASS := JAVA_LIBRARIES
374LOCAL_MODULE := dialer-grpc-all-target
375LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800376LOCAL_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 -0700377LOCAL_UNINSTALLABLE_MODULE := true
378
379include $(BUILD_PREBUILT)
380
381include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700382
383LOCAL_MODULE_CLASS := JAVA_LIBRARIES
384LOCAL_MODULE := dialer-grpc-context-target
385LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800386LOCAL_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 -0700387LOCAL_UNINSTALLABLE_MODULE := true
388
389include $(BUILD_PREBUILT)
390
wangqi69674662017-06-29 13:14:51 -0700391include $(CLEAR_VARS)
Roland Levillain05d63612017-08-24 14:41:12 +0100392
393LOCAL_MODULE_CLASS := JAVA_LIBRARIES
394LOCAL_MODULE := dialer-auto-value-target
395LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000396LOCAL_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 +0100397LOCAL_UNINSTALLABLE_MODULE := true
398
399include $(BUILD_PREBUILT)
400
401include $(CLEAR_VARS)