blob: 7f165f27948a5c63d35103535737a7bc2d4dada8 [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 \
Eric Erfanianccca3152017-02-22 16:32:36 -0800119 jsr305 \
Eric Erfanian9bfcb3d2017-09-05 10:53:21 -0700120 libbackup \
Eric Erfanianccca3152017-02-22 16:32:36 -0800121 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700122 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700123
Alan Viveretteb5870be2017-04-26 11:15:10 -0400124LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700125 android-support-core-ui \
Alan Viverette423e2932018-02-01 15:52:28 -0500126 $(ANDROID_SUPPORT_DESIGN_TARGETS) \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400127 android-support-transition \
128 android-support-v13 \
129 android-support-v4 \
130 android-support-v7-appcompat \
131 android-support-v7-cardview \
132 android-support-v7-recyclerview \
133
Eric Erfanianccca3152017-02-22 16:32:36 -0800134LOCAL_JAVA_LIBRARIES := \
Roland Levillain05d63612017-08-24 14:41:12 +0100135 dialer-auto-value-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700136 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800137
Roland Levillain05d63612017-08-24 14:41:12 +0100138LOCAL_ANNOTATION_PROCESSORS := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700139 dialer-auto-value \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800140 dialer-javapoet \
Eric Erfanianccca3152017-02-22 16:32:36 -0800141 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700142 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800143 dialer-dagger2-producers \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800144 dialer-glide-annotation \
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800145 dialer-glide-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800146 dialer-guava \
147 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700148 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800149
Roland Levillain05d63612017-08-24 14:41:12 +0100150LOCAL_ANNOTATION_PROCESSOR_CLASSES := \
Ta-wei Yena8bbb352018-01-25 18:10:32 -0800151 com.google.auto.value.processor.AutoValueProcessor,dagger.internal.codegen.ComponentProcessor,com.bumptech.glide.annotation.compiler.GlideAnnotationProcessor
Chiao Cheng94b10b52012-08-17 16:59:12 -0700152
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700153
154# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700155LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700156LOCAL_JACK_FLAGS := --multi-dex native
157
158LOCAL_PROGUARD_ENABLED := disabled
159ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700160
Eric Erfanian415dffb2017-08-08 14:32:39 -0700161
Eric Erfanian90508232017-03-24 09:31:16 -0700162# Proguard includes
sail3bcea982017-09-03 13:57:22 -0700163LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(BASE_DIR))
Colin Crossf939e092017-04-05 22:13:40 -0700164LOCAL_PROGUARD_ENABLED := custom
165
Colin Crossf939e092017-04-05 22:13:40 -0700166LOCAL_PROGUARD_ENABLED += optimization
167endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700168
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700169# End Bug: 37077388
170
Ta-wei Yen6640e552017-04-21 15:33:24 -0700171LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800172LOCAL_MODULE_TAGS := optional
173LOCAL_PACKAGE_NAME := Dialer
174LOCAL_CERTIFICATE := shared
175LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700176LOCAL_USE_AAPT2 := true
177
178# b/37483961 - Jack Not Compiling Dagger Class Properly
179LOCAL_JACK_ENABLED := javac_frontend
180
Chiao Cheng94b10b52012-08-17 16:59:12 -0700181include $(BUILD_PACKAGE)
182
Eric Erfanianccca3152017-02-22 16:32:36 -0800183# Cleanup local state
184BASE_DIR :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700185EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800186RES_DIRS :=
187DIALER_MANIFEST_FILES :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700188EXCLUDE_MANIFESTS :=
189EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800190
191# Create references to prebuilt libraries.
192include $(CLEAR_VARS)
193
194LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
zachh3fcd7082018-01-08 20:10:30 +0000195 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 -0800196 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7.jar \
197 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar \
198 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 -0800199 dialer-glide-annotation:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar \
200 dialer-glide-compiler:../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/compiler/SNAPSHOT/compiler-SNAPSHOT.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800201 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3.jar \
202 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3.jar \
203 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3.jar \
204 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3.jar \
205 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 +0000206 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar \
Colin Crossc87db952017-12-13 20:41:25 -0800207 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 -0800208 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar \
209 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 -0800210
Roland Levillain05d63612017-08-24 14:41:12 +0100211include $(BUILD_HOST_PREBUILT)
Eric Erfanianccca3152017-02-22 16:32:36 -0800212
Eric Erfanian90508232017-03-24 09:31:16 -0700213# Enumerate target prebuilts to avoid linker warnings like
214# Dialer (java:sdk) should not link to dialer-guava (java:platform)
215include $(CLEAR_VARS)
216
217LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800218LOCAL_MODULE := dialer-guava-target
219LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000220LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/guava-23.0.jar
Zachary Heidepriem9f39c2f2017-11-10 15:07:54 -0800221LOCAL_UNINSTALLABLE_MODULE := true
222
223include $(BUILD_PREBUILT)
224
225include $(CLEAR_VARS)
226
227LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Zachary Heidepriem922cbed2017-11-11 18:49:27 -0800228LOCAL_MODULE := dialer-error-prone-target
229LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800230LOCAL_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 -0800231LOCAL_UNINSTALLABLE_MODULE := true
232
233include $(BUILD_PREBUILT)
234
235include $(CLEAR_VARS)
236
237LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700238LOCAL_MODULE := dialer-dagger2-target
239LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800240LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700241LOCAL_UNINSTALLABLE_MODULE := true
242
243include $(BUILD_PREBUILT)
244
245include $(CLEAR_VARS)
246
247LOCAL_MODULE_CLASS := JAVA_LIBRARIES
248LOCAL_MODULE := dialer-disklrucache-target
249LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800250LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700251LOCAL_UNINSTALLABLE_MODULE := true
252
253include $(BUILD_PREBUILT)
254
255include $(CLEAR_VARS)
256
257LOCAL_MODULE_CLASS := JAVA_LIBRARIES
258LOCAL_MODULE := dialer-gifdecoder-target
259LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800260LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700261LOCAL_UNINSTALLABLE_MODULE := true
262
263include $(BUILD_PREBUILT)
264
265include $(CLEAR_VARS)
266
267LOCAL_MODULE_CLASS := JAVA_LIBRARIES
268LOCAL_MODULE := dialer-glide-target
269LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800270LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700271LOCAL_UNINSTALLABLE_MODULE := true
272
273include $(BUILD_PREBUILT)
274
275include $(CLEAR_VARS)
276
277LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Ta-wei Yenea7ea2b2018-02-08 18:03:40 -0800278LOCAL_MODULE := dialer-glide-annotation-target
279LOCAL_SDK_VERSION := current
280LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/annotation/SNAPSHOT/annotation-SNAPSHOT.jar
281LOCAL_UNINSTALLABLE_MODULE := true
282
283include $(BUILD_PREBUILT)
284
285include $(CLEAR_VARS)
286
287LOCAL_MODULE_CLASS := JAVA_LIBRARIES
Eric Erfanian90508232017-03-24 09:31:16 -0700288LOCAL_MODULE := dialer-javax-annotation-api-target
289LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800290LOCAL_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 -0700291LOCAL_UNINSTALLABLE_MODULE := true
292
293include $(BUILD_PREBUILT)
294
295include $(CLEAR_VARS)
296
297LOCAL_MODULE_CLASS := JAVA_LIBRARIES
298LOCAL_MODULE := dialer-libshortcutbadger-target
299LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800300LOCAL_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 -0700301LOCAL_UNINSTALLABLE_MODULE := true
302
303include $(BUILD_PREBUILT)
304
305include $(CLEAR_VARS)
306
307LOCAL_MODULE_CLASS := JAVA_LIBRARIES
308LOCAL_MODULE := dialer-javax-inject-target
309LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800310LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1.jar
Eric Erfanian90508232017-03-24 09:31:16 -0700311LOCAL_UNINSTALLABLE_MODULE := true
312
313include $(BUILD_PREBUILT)
314
Eric Erfanianccca3152017-02-22 16:32:36 -0800315include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700316
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700317LOCAL_MODULE_CLASS := JAVA_LIBRARIES
318LOCAL_MODULE := dialer-commons-io-target
319LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800320LOCAL_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 -0700321LOCAL_UNINSTALLABLE_MODULE := true
322
323include $(BUILD_PREBUILT)
324
325include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700326
327LOCAL_MODULE_CLASS := JAVA_LIBRARIES
328LOCAL_MODULE := dialer-mime4j-core-target
329LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800330LOCAL_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 -0700331LOCAL_UNINSTALLABLE_MODULE := true
332
333include $(BUILD_PREBUILT)
334
335include $(CLEAR_VARS)
336
337LOCAL_MODULE_CLASS := JAVA_LIBRARIES
338LOCAL_MODULE := dialer-mime4j-dom-target
339LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800340LOCAL_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 -0700341LOCAL_UNINSTALLABLE_MODULE := true
342
343include $(BUILD_PREBUILT)
344
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700345include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700346
347LOCAL_MODULE_CLASS := JAVA_LIBRARIES
348LOCAL_MODULE := dialer-grpc-core-target
349LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800350LOCAL_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 -0700351LOCAL_UNINSTALLABLE_MODULE := true
352
353include $(BUILD_PREBUILT)
354
355include $(CLEAR_VARS)
356
357LOCAL_MODULE_CLASS := JAVA_LIBRARIES
358LOCAL_MODULE := dialer-grpc-okhttp-target
359LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800360LOCAL_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 -0700361LOCAL_UNINSTALLABLE_MODULE := true
362
363include $(BUILD_PREBUILT)
364
365include $(CLEAR_VARS)
366
367LOCAL_MODULE_CLASS := JAVA_LIBRARIES
368LOCAL_MODULE := dialer-grpc-protobuf-lite-target
369LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800370LOCAL_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 -0700371LOCAL_UNINSTALLABLE_MODULE := true
372
373include $(BUILD_PREBUILT)
374
375include $(CLEAR_VARS)
376
377LOCAL_MODULE_CLASS := JAVA_LIBRARIES
378LOCAL_MODULE := dialer-grpc-stub-target
379LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800380LOCAL_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 -0700381LOCAL_UNINSTALLABLE_MODULE := true
382
383include $(BUILD_PREBUILT)
384
385include $(CLEAR_VARS)
386
387LOCAL_MODULE_CLASS := JAVA_LIBRARIES
388LOCAL_MODULE := dialer-grpc-all-target
389LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800390LOCAL_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 -0700391LOCAL_UNINSTALLABLE_MODULE := true
392
393include $(BUILD_PREBUILT)
394
395include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700396
397LOCAL_MODULE_CLASS := JAVA_LIBRARIES
398LOCAL_MODULE := dialer-grpc-context-target
399LOCAL_SDK_VERSION := current
Colin Crossc87db952017-12-13 20:41:25 -0800400LOCAL_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 -0700401LOCAL_UNINSTALLABLE_MODULE := true
402
403include $(BUILD_PREBUILT)
404
wangqi69674662017-06-29 13:14:51 -0700405include $(CLEAR_VARS)
Roland Levillain05d63612017-08-24 14:41:12 +0100406
407LOCAL_MODULE_CLASS := JAVA_LIBRARIES
408LOCAL_MODULE := dialer-auto-value-target
409LOCAL_SDK_VERSION := current
zachh3fcd7082018-01-08 20:10:30 +0000410LOCAL_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 +0100411LOCAL_UNINSTALLABLE_MODULE := true
412
413include $(BUILD_PREBUILT)
414
415include $(CLEAR_VARS)