blob: bf5494e5f2340a695e076f47e1c76b21101453b9 [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 Erfanianccca3152017-02-22 16:32:36 -080018# Primary dialer module sources.
19SRC_DIRS := \
20 $(BASE_DIR)/contacts/common \
21 $(BASE_DIR)/dialer \
Eric Erfanian91ce7d22017-06-05 13:35:02 -070022 $(BASE_DIR)/dialershared \
Eric Erfanianccca3152017-02-22 16:32:36 -080023 $(BASE_DIR)/incallui \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070024 $(BASE_DIR)/voicemail
25
26# Exclude files incompatible with AOSP.
27EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070028 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
29 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
30 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
31 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
32 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
33 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
34 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
35 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
36 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
37 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
38 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
39 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
40 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
41 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian91ce7d22017-06-05 13:35:02 -070042 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070043
Paul Duffin922b1082017-05-05 15:05:47 +010044# Exclude testing only class, not used anywhere here
45EXCLUDE_FILES += \
46 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
47
Eric Erfanian842a9772017-06-22 09:39:08 -070048# Exclude build variants for now
49EXCLUDE_FILES += \
50 $(BASE_DIR)/dialer/buildtype/bugfood/BuildTypeAccessorImpl.java \
51 $(BASE_DIR)/dialer/buildtype/dogfood/BuildTypeAccessorImpl.java \
52 $(BASE_DIR)/dialer/buildtype/fishfood/BuildTypeAccessorImpl.java \
53 $(BASE_DIR)/dialer/buildtype/test/BuildTypeAccessorImpl.java \
54 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
55 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070056 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java \
57
58EXCLUDE_RESOURCE_DIRECTORIES := \
59 java/com/android/incallui/maps/impl/res \
Eric Erfanian842a9772017-06-22 09:39:08 -070060
Eric Erfanianccca3152017-02-22 16:32:36 -080061# All Dialers resources.
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070062RES_DIRS := $(call all-subdir-named-dirs,res,.)
63RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070064
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070065EXCLUDE_MANIFESTS := \
66 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
67 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
68 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
69 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Ta-wei Yen90a13e92016-01-11 13:00:53 -080070
Eric Erfanianccca3152017-02-22 16:32:36 -080071# Dialer manifest files to merge.
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070072DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
73DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070074
Eric Erfanianccca3152017-02-22 16:32:36 -080075# Merge all manifest files.
76LOCAL_FULL_LIBS_MANIFEST_FILES := \
77 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
Eric Erfanianb1161672017-08-16 16:33:47 -070078
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070079LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS))
80LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS))
81LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanianb1161672017-08-16 16:33:47 -070082
Eric Erfanian8369df02017-05-03 10:27:13 -070083LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
84
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070085LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
86
87EXCLUDE_EXTRA_PACKAGES := \
88 com.android.dialer.binary.aosp.testing \
89 com.android.dialer.binary.google \
90 com.android.incallui.calllocation.impl \
91 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -080092
93# We specify each package explicitly to glob resource files.
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070094# find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g' | sed 's/$/ \\/'
Chiao Cheng94b10b52012-08-17 16:59:12 -070095LOCAL_AAPT_FLAGS := \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -070096 com.android.contacts.common \
97 com.android.dialer.about \
98 com.android.dialer.app \
99 com.android.dialer.app.manifests.activities \
100 com.android.dialer.app.voicemail.error \
101 com.android.dialer.backup \
102 com.android.dialer.binary.aosp.testing \
103 com.android.dialer.binary.google \
104 com.android.dialer.blocking \
105 com.android.dialer.callcomposer \
106 com.android.dialer.callcomposer.camera \
107 com.android.dialer.callcomposer.camera.camerafocus \
108 com.android.dialer.callcomposer.cameraui \
109 com.android.dialer.calldetails \
110 com.android.dialer.calllog.database \
111 com.android.dialer.calllog.ui \
112 com.android.dialer.calllogutils \
113 com.android.dialer.common \
114 com.android.dialer.configprovider \
115 com.android.dialer.contactactions \
116 com.android.dialer.contactphoto \
117 com.android.dialer.contactsfragment \
118 com.android.dialer.databasepopulator \
119 com.android.dialer.dialpadview \
120 com.android.dialer.enrichedcall.simulator \
121 com.android.dialer.interactions \
122 com.android.dialer.lettertile \
123 com.android.dialer.location \
124 com.android.dialer.main.impl \
125 com.android.dialer.notification \
126 com.android.dialer.oem \
127 com.android.dialer.phonenumberutil \
128 com.android.dialer.postcall \
129 com.android.dialer.searchfragment.common \
130 com.android.dialer.searchfragment.cp2 \
131 com.android.dialer.searchfragment.list \
132 com.android.dialer.searchfragment.nearbyplaces \
133 com.android.dialer.searchfragment.remote \
134 com.android.dialershared.bubble \
135 com.android.dialer.shortcuts \
136 com.android.dialer.simulator.impl \
137 com.android.dialer.speeddial \
138 com.android.dialer.theme \
139 com.android.dialer.util \
140 com.android.dialer.voicemail.listui \
141 com.android.dialer.voicemailstatus \
142 com.android.dialer.widget \
143 com.android.incallui \
144 com.android.incallui.answer.impl.affordance \
145 com.android.incallui.answer.impl \
146 com.android.incallui.answer.impl.answermethod \
147 com.android.incallui.answer.impl.hint \
148 com.android.incallui.audioroute \
149 com.android.incallui.autoresizetext \
150 com.android.incallui.calllocation.impl \
151 com.android.incallui.callpending \
152 com.android.incallui.commontheme \
153 com.android.incallui.contactgrid \
154 com.android.incallui.disconnectdialog \
155 com.android.incallui.hold \
156 com.android.incallui.incall.impl \
157 com.android.incallui.maps.impl \
158 com.android.incallui.sessiondata \
159 com.android.incallui.spam \
160 com.android.incallui.speakerbuttonlogic \
161 com.android.incallui.telecomeventui \
162 com.android.incallui.video.impl \
163 com.android.incallui.video.protocol \
164 com.android.voicemail \
165 com.android.voicemail.impl \
166 com.android.voicemail.impl.configui \
Eric Erfanian842a9772017-06-22 09:39:08 -0700167
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700168LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
169LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
170LOCAL_AAPT_FLAGS += \
171 --auto-add-overlay \
172 --extra-packages me.leolin.shortcutbadger \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700173
Chiao Cheng94b10b52012-08-17 16:59:12 -0700174LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800175 android-common \
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700176 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800177 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700178 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700179 dialer-dagger2-target \
180 dialer-disklrucache-target \
181 dialer-gifdecoder-target \
182 dialer-glide-target \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700183 dialer-grpc-all-target \
184 dialer-grpc-context-target \
185 dialer-grpc-core-target \
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700186 dialer-grpc-okhttp-target \
187 dialer-grpc-protobuf-lite-target \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700188 dialer-grpc-stub-target \
Eric Erfanian842a9772017-06-22 09:39:08 -0700189 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700190 dialer-javax-annotation-api-target \
191 dialer-javax-inject-target \
192 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700193 dialer-mime4j-core-target \
194 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800195 jsr305 \
196 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700197 volley \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700198 libbackup \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700199
Alan Viveretteb5870be2017-04-26 11:15:10 -0400200LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700201 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400202 android-support-design \
203 android-support-transition \
204 android-support-v13 \
205 android-support-v4 \
206 android-support-v7-appcompat \
207 android-support-v7-cardview \
208 android-support-v7-recyclerview \
209
Eric Erfanianccca3152017-02-22 16:32:36 -0800210LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700211 dialer-auto-value \
Eric Erfanian842a9772017-06-22 09:39:08 -0700212 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800213
214# Libraries needed by the compiler (JACK) to generate code.
215PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian842a9772017-06-22 09:39:08 -0700216 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800217 dialer-dagger2 \
Eric Erfanian842a9772017-06-22 09:39:08 -0700218 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800219 dialer-dagger2-producers \
220 dialer-guava \
221 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700222 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800223
224# Resolve the jar paths.
225PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700226# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800227LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
228
229LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700230LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700231
Eric Erfanianea7890c2017-06-19 12:40:59 -0700232
233# Begin Bug: 37077388
Eric Erfanian842a9772017-06-22 09:39:08 -0700234LOCAL_DX_FLAGS := --multi-dex
Eric Erfanianea7890c2017-06-19 12:40:59 -0700235LOCAL_JACK_FLAGS := --multi-dex native
236
237LOCAL_PROGUARD_ENABLED := disabled
238ifdef LOCAL_JACK_ENABLED
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700239
240
Eric Erfanian90508232017-03-24 09:31:16 -0700241# Proguard includes
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700242LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(SRC_DIRS))
Colin Crossf939e092017-04-05 22:13:40 -0700243LOCAL_PROGUARD_ENABLED := custom
244
Colin Crossf939e092017-04-05 22:13:40 -0700245LOCAL_PROGUARD_ENABLED += optimization
246endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700247
Eric Erfanianea7890c2017-06-19 12:40:59 -0700248# End Bug: 37077388
249
Ta-wei Yen6640e552017-04-21 15:33:24 -0700250LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800251LOCAL_MODULE_TAGS := optional
252LOCAL_PACKAGE_NAME := Dialer
253LOCAL_CERTIFICATE := shared
254LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700255LOCAL_USE_AAPT2 := true
256
257# b/37483961 - Jack Not Compiling Dagger Class Properly
258LOCAL_JACK_ENABLED := javac_frontend
259
Chiao Cheng94b10b52012-08-17 16:59:12 -0700260include $(BUILD_PACKAGE)
261
Eric Erfanianccca3152017-02-22 16:32:36 -0800262# Cleanup local state
263BASE_DIR :=
264SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700265EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800266RES_DIRS :=
267DIALER_MANIFEST_FILES :=
268PROCESSOR_LIBRARIES_TARGET :=
269PROCESSOR_JARS :=
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700270EXCLUDE_MANIFESTS :=
271EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800272
273# Create references to prebuilt libraries.
274include $(CLEAR_VARS)
275
276LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700277 dialer-auto-value:../../../prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/auto-value-1.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian842a9772017-06-22 09:39:08 -0700278 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian8369df02017-05-03 10:27:13 -0700279 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
280 dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700281 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
282 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
283 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
284 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
285 dialer-grpc-stub:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian842a9772017-06-22 09:39:08 -0700286 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian90508232017-03-24 09:31:16 -0700287 dialer-javax-annotation-api:../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX) \
288 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanianccca3152017-02-22 16:32:36 -0800289
290include $(BUILD_MULTI_PREBUILT)
291
Eric Erfanian90508232017-03-24 09:31:16 -0700292# Enumerate target prebuilts to avoid linker warnings like
293# Dialer (java:sdk) should not link to dialer-guava (java:platform)
294include $(CLEAR_VARS)
295
296LOCAL_MODULE_CLASS := JAVA_LIBRARIES
297LOCAL_MODULE := dialer-guava-target
298LOCAL_SDK_VERSION := current
299LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
300LOCAL_UNINSTALLABLE_MODULE := true
301
302include $(BUILD_PREBUILT)
303
304include $(CLEAR_VARS)
305
306LOCAL_MODULE_CLASS := JAVA_LIBRARIES
307LOCAL_MODULE := dialer-dagger2-target
308LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700309LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700310LOCAL_UNINSTALLABLE_MODULE := true
311
312include $(BUILD_PREBUILT)
313
314include $(CLEAR_VARS)
315
316LOCAL_MODULE_CLASS := JAVA_LIBRARIES
317LOCAL_MODULE := dialer-disklrucache-target
318LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700319LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700320LOCAL_UNINSTALLABLE_MODULE := true
321
322include $(BUILD_PREBUILT)
323
324include $(CLEAR_VARS)
325
326LOCAL_MODULE_CLASS := JAVA_LIBRARIES
327LOCAL_MODULE := dialer-gifdecoder-target
328LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700329LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700330LOCAL_UNINSTALLABLE_MODULE := true
331
332include $(BUILD_PREBUILT)
333
334include $(CLEAR_VARS)
335
336LOCAL_MODULE_CLASS := JAVA_LIBRARIES
337LOCAL_MODULE := dialer-glide-target
338LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700339LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700340LOCAL_UNINSTALLABLE_MODULE := true
341
342include $(BUILD_PREBUILT)
343
344include $(CLEAR_VARS)
345
346LOCAL_MODULE_CLASS := JAVA_LIBRARIES
347LOCAL_MODULE := dialer-javax-annotation-api-target
348LOCAL_SDK_VERSION := current
349LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
350LOCAL_UNINSTALLABLE_MODULE := true
351
352include $(BUILD_PREBUILT)
353
354include $(CLEAR_VARS)
355
356LOCAL_MODULE_CLASS := JAVA_LIBRARIES
357LOCAL_MODULE := dialer-libshortcutbadger-target
358LOCAL_SDK_VERSION := current
359LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
360LOCAL_UNINSTALLABLE_MODULE := true
361
362include $(BUILD_PREBUILT)
363
364include $(CLEAR_VARS)
365
366LOCAL_MODULE_CLASS := JAVA_LIBRARIES
367LOCAL_MODULE := dialer-javax-inject-target
368LOCAL_SDK_VERSION := current
369LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
370LOCAL_UNINSTALLABLE_MODULE := true
371
372include $(BUILD_PREBUILT)
373
Eric Erfanianccca3152017-02-22 16:32:36 -0800374include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700375
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700376LOCAL_MODULE_CLASS := JAVA_LIBRARIES
377LOCAL_MODULE := dialer-commons-io-target
378LOCAL_SDK_VERSION := current
379LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
380LOCAL_UNINSTALLABLE_MODULE := true
381
382include $(BUILD_PREBUILT)
383
384include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700385
386LOCAL_MODULE_CLASS := JAVA_LIBRARIES
387LOCAL_MODULE := dialer-mime4j-core-target
388LOCAL_SDK_VERSION := current
389LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2$(COMMON_JAVA_PACKAGE_SUFFIX)
390LOCAL_UNINSTALLABLE_MODULE := true
391
392include $(BUILD_PREBUILT)
393
394include $(CLEAR_VARS)
395
396LOCAL_MODULE_CLASS := JAVA_LIBRARIES
397LOCAL_MODULE := dialer-mime4j-dom-target
398LOCAL_SDK_VERSION := current
399LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2$(COMMON_JAVA_PACKAGE_SUFFIX)
400LOCAL_UNINSTALLABLE_MODULE := true
401
402include $(BUILD_PREBUILT)
403
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700404include $(CLEAR_VARS)
Eric Erfanian91ce7d22017-06-05 13:35:02 -0700405
406LOCAL_MODULE_CLASS := JAVA_LIBRARIES
407LOCAL_MODULE := dialer-grpc-core-target
408LOCAL_SDK_VERSION := current
409LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
410LOCAL_UNINSTALLABLE_MODULE := true
411
412include $(BUILD_PREBUILT)
413
414include $(CLEAR_VARS)
415
416LOCAL_MODULE_CLASS := JAVA_LIBRARIES
417LOCAL_MODULE := dialer-grpc-okhttp-target
418LOCAL_SDK_VERSION := current
419LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
420LOCAL_UNINSTALLABLE_MODULE := true
421
422include $(BUILD_PREBUILT)
423
424include $(CLEAR_VARS)
425
426LOCAL_MODULE_CLASS := JAVA_LIBRARIES
427LOCAL_MODULE := dialer-grpc-protobuf-lite-target
428LOCAL_SDK_VERSION := current
429LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
430LOCAL_UNINSTALLABLE_MODULE := true
431
432include $(BUILD_PREBUILT)
433
434include $(CLEAR_VARS)
435
436LOCAL_MODULE_CLASS := JAVA_LIBRARIES
437LOCAL_MODULE := dialer-grpc-stub-target
438LOCAL_SDK_VERSION := current
439LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
440LOCAL_UNINSTALLABLE_MODULE := true
441
442include $(BUILD_PREBUILT)
443
444include $(CLEAR_VARS)
445
446LOCAL_MODULE_CLASS := JAVA_LIBRARIES
447LOCAL_MODULE := dialer-grpc-all-target
448LOCAL_SDK_VERSION := current
449LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
450LOCAL_UNINSTALLABLE_MODULE := true
451
452include $(BUILD_PREBUILT)
453
454include $(CLEAR_VARS)
Eric Erfanianea7890c2017-06-19 12:40:59 -0700455
Eric Erfanian842a9772017-06-22 09:39:08 -0700456LOCAL_MODULE_CLASS := JAVA_LIBRARIES
457LOCAL_MODULE := dialer-grpc-context-target
458LOCAL_SDK_VERSION := current
459LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
460LOCAL_UNINSTALLABLE_MODULE := true
461
462include $(BUILD_PREBUILT)
463
Eric Erfanianfc0eb8c2017-08-31 06:57:16 -0700464include $(CLEAR_VARS)