blob: ff7b0a38e6631272aaa00186d5df8a543067c5e5 [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.backup.api_key. This should be added to
3# the manifest in the top level directory.
4# * removed com.google.android.geo.API_KEY key. This should be added to
5# the manifest files in java/com/android/incallui/calllocation/impl/
6# and /java/com/android/incallui/maps/impl/
Eric Erfanian3bb96412017-06-22 10:19:53 -07007# * b/62417801 modify translation string naming convention:
8# $ find . -type d | grep 262 | rename 's/(values)\-([a-zA-Z\+\-]+)\-(mcc262-mnc01)/$1-$3-$2/'
Eric Erfanian2f1c7582017-06-19 11:26:01 -07009# * b/62343966 include manually generated GRPC service class:
10# $ 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 \
11# --grpc-java_out=lite:"packages/apps/Dialer/java/com/android/voicemail/impl/" \
12# --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"
Eric Erfanian3bb96412017-06-22 10:19:53 -070013# * b/37077388 temporarily disable proguard with javac
Chiao Cheng94b10b52012-08-17 16:59:12 -070014LOCAL_PATH:= $(call my-dir)
15include $(CLEAR_VARS)
16
Eric Erfanianccca3152017-02-22 16:32:36 -080017# The base directory for Dialer sources.
18BASE_DIR := java/com/android
Jay Shrauner0f68a712014-07-16 16:13:57 -070019
Eric Erfanianccca3152017-02-22 16:32:36 -080020# Primary dialer module sources.
21SRC_DIRS := \
22 $(BASE_DIR)/contacts/common \
23 $(BASE_DIR)/dialer \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070024 $(BASE_DIR)/dialershared \
Eric Erfanianccca3152017-02-22 16:32:36 -080025 $(BASE_DIR)/incallui \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070026 $(BASE_DIR)/voicemail
27
28# Exclude files incompatible with AOSP.
29EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070030 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
31 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
32 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
33 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
34 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
35 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
36 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
37 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
38 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
39 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
40 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
41 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
42 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
43 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070044 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070045
Paul Duffin922b1082017-05-05 15:05:47 +010046# Exclude testing only class, not used anywhere here
47EXCLUDE_FILES += \
48 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
49
Eric Erfanian3bb96412017-06-22 10:19:53 -070050# Exclude build variants for now
51EXCLUDE_FILES += \
52 $(BASE_DIR)/dialer/buildtype/bugfood/BuildTypeAccessorImpl.java \
53 $(BASE_DIR)/dialer/buildtype/dogfood/BuildTypeAccessorImpl.java \
54 $(BASE_DIR)/dialer/buildtype/fishfood/BuildTypeAccessorImpl.java \
55 $(BASE_DIR)/dialer/buildtype/test/BuildTypeAccessorImpl.java \
56 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
57 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
58 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java
59
Eric Erfanian415dffb2017-08-08 14:32:39 -070060EXCLUDE_RESOURCE_DIRECTORIES := \
61 java/com/android/incallui/maps/impl/res \
62
Eric Erfanianccca3152017-02-22 16:32:36 -080063# All Dialers resources.
Eric Erfanian415dffb2017-08-08 14:32:39 -070064RES_DIRS := $(call all-subdir-named-dirs,res,.)
65RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070066
Eric Erfanian415dffb2017-08-08 14:32:39 -070067EXCLUDE_MANIFESTS := \
68 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
69 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
70 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
71 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Eric Erfanian9b4d9bc2017-07-25 09:36:19 -070072
Eric Erfanianccca3152017-02-22 16:32:36 -080073# Dialer manifest files to merge.
Eric Erfanian415dffb2017-08-08 14:32:39 -070074DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
75DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070076
Eric Erfanianccca3152017-02-22 16:32:36 -080077# Merge all manifest files.
78LOCAL_FULL_LIBS_MANIFEST_FILES := \
79 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
80LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070081LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanian8369df02017-05-03 10:27:13 -070082LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS))
83LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
84
Eric Erfanian415dffb2017-08-08 14:32:39 -070085LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
86
87define all-dialer-manifest-extra-packages
88 $(shell cd $(LOCAL_PATH) ; \
89 find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g')
90endef
91
92EXCLUDE_EXTRA_PACKAGES := \
93 com.android.dialer.binary.aosp.testing \
94 com.android.dialer.binary.google \
95 com.android.incallui.calllocation.impl \
96 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -080097
98# We specify each package explicitly to glob resource files.
Eric Erfanian415dffb2017-08-08 14:32:39 -070099LOCAL_AAPT_FLAGS := $(call all-dialer-manifest-extra-packages)
100LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
101LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
102LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800103 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700104 --extra-packages me.leolin.shortcutbadger \
105
Chiao Cheng94b10b52012-08-17 16:59:12 -0700106LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800107 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700108 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800109 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700110 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700111 dialer-dagger2-target \
112 dialer-disklrucache-target \
113 dialer-gifdecoder-target \
114 dialer-glide-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700115 dialer-grpc-all-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700116 dialer-grpc-context-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700117 dialer-grpc-core-target \
118 dialer-grpc-okhttp-target \
119 dialer-grpc-protobuf-lite-target \
120 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700121 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700122 dialer-javax-annotation-api-target \
123 dialer-javax-inject-target \
124 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700125 dialer-mime4j-core-target \
126 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800127 jsr305 \
128 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700129 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700130
Alan Viveretteb5870be2017-04-26 11:15:10 -0400131LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700132 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400133 android-support-design \
134 android-support-transition \
135 android-support-v13 \
136 android-support-v4 \
137 android-support-v7-appcompat \
138 android-support-v7-cardview \
139 android-support-v7-recyclerview \
140
Eric Erfanianccca3152017-02-22 16:32:36 -0800141LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700142 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700143 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800144
145# Libraries needed by the compiler (JACK) to generate code.
146PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700147 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800148 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700149 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800150 dialer-dagger2-producers \
151 dialer-guava \
152 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700153 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800154
155# Resolve the jar paths.
156PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700157# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800158LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
159
160LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700161LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700162
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700163
164# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700165LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700166LOCAL_JACK_FLAGS := --multi-dex native
167
168LOCAL_PROGUARD_ENABLED := disabled
169ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700170
171define all-dialer-proguard-flags
172 $(shell cd $(LOCAL_PATH) ; \
173 find . -type f -name "proguard.*flags" | uniq | sort | cut -c 3-)
174endef
175
Eric Erfanian90508232017-03-24 09:31:16 -0700176# Proguard includes
Eric Erfanian415dffb2017-08-08 14:32:39 -0700177LOCAL_PROGUARD_FLAG_FILES := $(call all-dialer-proguard-flags)
Colin Crossf939e092017-04-05 22:13:40 -0700178LOCAL_PROGUARD_ENABLED := custom
179
Colin Crossf939e092017-04-05 22:13:40 -0700180LOCAL_PROGUARD_ENABLED += optimization
181endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700182
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700183# End Bug: 37077388
184
Ta-wei Yen6640e552017-04-21 15:33:24 -0700185LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800186LOCAL_MODULE_TAGS := optional
187LOCAL_PACKAGE_NAME := Dialer
188LOCAL_CERTIFICATE := shared
189LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700190LOCAL_USE_AAPT2 := true
191
192# b/37483961 - Jack Not Compiling Dagger Class Properly
193LOCAL_JACK_ENABLED := javac_frontend
194
Chiao Cheng94b10b52012-08-17 16:59:12 -0700195include $(BUILD_PACKAGE)
196
Eric Erfanianccca3152017-02-22 16:32:36 -0800197# Cleanup local state
198BASE_DIR :=
199SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700200EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800201RES_DIRS :=
202DIALER_MANIFEST_FILES :=
203PROCESSOR_LIBRARIES_TARGET :=
204PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700205EXCLUDE_MANIFESTS :=
206EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800207
208# Create references to prebuilt libraries.
209include $(CLEAR_VARS)
210
211LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700212 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 Erfanian3bb96412017-06-22 10:19:53 -0700213 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 -0700214 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
215 dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700216 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
217 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
218 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
219 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) \
220 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 Erfanian3bb96412017-06-22 10:19:53 -0700221 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 -0700222 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) \
223 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 -0800224
225include $(BUILD_MULTI_PREBUILT)
226
Eric Erfanian90508232017-03-24 09:31:16 -0700227# Enumerate target prebuilts to avoid linker warnings like
228# Dialer (java:sdk) should not link to dialer-guava (java:platform)
229include $(CLEAR_VARS)
230
231LOCAL_MODULE_CLASS := JAVA_LIBRARIES
232LOCAL_MODULE := dialer-guava-target
233LOCAL_SDK_VERSION := current
234LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
235LOCAL_UNINSTALLABLE_MODULE := true
236
237include $(BUILD_PREBUILT)
238
239include $(CLEAR_VARS)
240
241LOCAL_MODULE_CLASS := JAVA_LIBRARIES
242LOCAL_MODULE := dialer-dagger2-target
243LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700244LOCAL_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 -0700245LOCAL_UNINSTALLABLE_MODULE := true
246
247include $(BUILD_PREBUILT)
248
249include $(CLEAR_VARS)
250
251LOCAL_MODULE_CLASS := JAVA_LIBRARIES
252LOCAL_MODULE := dialer-disklrucache-target
253LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700254LOCAL_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 -0700255LOCAL_UNINSTALLABLE_MODULE := true
256
257include $(BUILD_PREBUILT)
258
259include $(CLEAR_VARS)
260
261LOCAL_MODULE_CLASS := JAVA_LIBRARIES
262LOCAL_MODULE := dialer-gifdecoder-target
263LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700264LOCAL_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 -0700265LOCAL_UNINSTALLABLE_MODULE := true
266
267include $(BUILD_PREBUILT)
268
269include $(CLEAR_VARS)
270
271LOCAL_MODULE_CLASS := JAVA_LIBRARIES
272LOCAL_MODULE := dialer-glide-target
273LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700274LOCAL_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 -0700275LOCAL_UNINSTALLABLE_MODULE := true
276
277include $(BUILD_PREBUILT)
278
279include $(CLEAR_VARS)
280
281LOCAL_MODULE_CLASS := JAVA_LIBRARIES
282LOCAL_MODULE := dialer-javax-annotation-api-target
283LOCAL_SDK_VERSION := current
284LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
285LOCAL_UNINSTALLABLE_MODULE := true
286
287include $(BUILD_PREBUILT)
288
289include $(CLEAR_VARS)
290
291LOCAL_MODULE_CLASS := JAVA_LIBRARIES
292LOCAL_MODULE := dialer-libshortcutbadger-target
293LOCAL_SDK_VERSION := current
294LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
295LOCAL_UNINSTALLABLE_MODULE := true
296
297include $(BUILD_PREBUILT)
298
299include $(CLEAR_VARS)
300
301LOCAL_MODULE_CLASS := JAVA_LIBRARIES
302LOCAL_MODULE := dialer-javax-inject-target
303LOCAL_SDK_VERSION := current
304LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
305LOCAL_UNINSTALLABLE_MODULE := true
306
307include $(BUILD_PREBUILT)
308
Eric Erfanianccca3152017-02-22 16:32:36 -0800309include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700310
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700311LOCAL_MODULE_CLASS := JAVA_LIBRARIES
312LOCAL_MODULE := dialer-commons-io-target
313LOCAL_SDK_VERSION := current
314LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
315LOCAL_UNINSTALLABLE_MODULE := true
316
317include $(BUILD_PREBUILT)
318
319include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700320
321LOCAL_MODULE_CLASS := JAVA_LIBRARIES
322LOCAL_MODULE := dialer-mime4j-core-target
323LOCAL_SDK_VERSION := current
324LOCAL_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)
325LOCAL_UNINSTALLABLE_MODULE := true
326
327include $(BUILD_PREBUILT)
328
329include $(CLEAR_VARS)
330
331LOCAL_MODULE_CLASS := JAVA_LIBRARIES
332LOCAL_MODULE := dialer-mime4j-dom-target
333LOCAL_SDK_VERSION := current
334LOCAL_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)
335LOCAL_UNINSTALLABLE_MODULE := true
336
337include $(BUILD_PREBUILT)
338
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700339include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700340
341LOCAL_MODULE_CLASS := JAVA_LIBRARIES
342LOCAL_MODULE := dialer-grpc-core-target
343LOCAL_SDK_VERSION := current
344LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
345LOCAL_UNINSTALLABLE_MODULE := true
346
347include $(BUILD_PREBUILT)
348
349include $(CLEAR_VARS)
350
351LOCAL_MODULE_CLASS := JAVA_LIBRARIES
352LOCAL_MODULE := dialer-grpc-okhttp-target
353LOCAL_SDK_VERSION := current
354LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
355LOCAL_UNINSTALLABLE_MODULE := true
356
357include $(BUILD_PREBUILT)
358
359include $(CLEAR_VARS)
360
361LOCAL_MODULE_CLASS := JAVA_LIBRARIES
362LOCAL_MODULE := dialer-grpc-protobuf-lite-target
363LOCAL_SDK_VERSION := current
364LOCAL_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)
365LOCAL_UNINSTALLABLE_MODULE := true
366
367include $(BUILD_PREBUILT)
368
369include $(CLEAR_VARS)
370
371LOCAL_MODULE_CLASS := JAVA_LIBRARIES
372LOCAL_MODULE := dialer-grpc-stub-target
373LOCAL_SDK_VERSION := current
374LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
375LOCAL_UNINSTALLABLE_MODULE := true
376
377include $(BUILD_PREBUILT)
378
379include $(CLEAR_VARS)
380
381LOCAL_MODULE_CLASS := JAVA_LIBRARIES
382LOCAL_MODULE := dialer-grpc-all-target
383LOCAL_SDK_VERSION := current
384LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
385LOCAL_UNINSTALLABLE_MODULE := true
386
387include $(BUILD_PREBUILT)
388
389include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700390
391LOCAL_MODULE_CLASS := JAVA_LIBRARIES
392LOCAL_MODULE := dialer-grpc-context-target
393LOCAL_SDK_VERSION := current
394LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
395LOCAL_UNINSTALLABLE_MODULE := true
396
397include $(BUILD_PREBUILT)
398
wangqi69674662017-06-29 13:14:51 -0700399include $(CLEAR_VARS)