blob: 2da71a598f4313c8e742714bc15294a6e45a5dfe [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
Chiao Cheng94b10b52012-08-17 16:59:12 -07008LOCAL_PATH:= $(call my-dir)
9include $(CLEAR_VARS)
10
Eric Erfanianccca3152017-02-22 16:32:36 -080011# The base directory for Dialer sources.
12BASE_DIR := java/com/android
Jay Shrauner0f68a712014-07-16 16:13:57 -070013
Eric Erfanianccca3152017-02-22 16:32:36 -080014# Primary dialer module sources.
15SRC_DIRS := \
16 $(BASE_DIR)/contacts/common \
17 $(BASE_DIR)/dialer \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070018 $(BASE_DIR)/dialershared \
Eric Erfanianccca3152017-02-22 16:32:36 -080019 $(BASE_DIR)/incallui \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070020 $(BASE_DIR)/voicemail
21
22# Exclude files incompatible with AOSP.
23EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070024 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
25 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
26 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
27 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
28 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
29 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
30 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
31 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
32 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
33 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
34 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
35 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
36 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
37 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070038 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070039
Paul Duffin922b1082017-05-05 15:05:47 +010040# Exclude testing only class, not used anywhere here
41EXCLUDE_FILES += \
42 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
43
Eric Erfanian3bb96412017-06-22 10:19:53 -070044# Exclude build variants for now
45EXCLUDE_FILES += \
46 $(BASE_DIR)/dialer/buildtype/bugfood/BuildTypeAccessorImpl.java \
47 $(BASE_DIR)/dialer/buildtype/dogfood/BuildTypeAccessorImpl.java \
48 $(BASE_DIR)/dialer/buildtype/fishfood/BuildTypeAccessorImpl.java \
49 $(BASE_DIR)/dialer/buildtype/test/BuildTypeAccessorImpl.java \
50 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
51 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
52 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java
53
Eric Erfanian415dffb2017-08-08 14:32:39 -070054EXCLUDE_RESOURCE_DIRECTORIES := \
55 java/com/android/incallui/maps/impl/res \
56
Eric Erfanianccca3152017-02-22 16:32:36 -080057# All Dialers resources.
Eric Erfanian415dffb2017-08-08 14:32:39 -070058RES_DIRS := $(call all-subdir-named-dirs,res,.)
59RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070060
Eric Erfanian415dffb2017-08-08 14:32:39 -070061EXCLUDE_MANIFESTS := \
62 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
63 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
64 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
65 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Eric Erfanian9b4d9bc2017-07-25 09:36:19 -070066
Eric Erfanianccca3152017-02-22 16:32:36 -080067# Dialer manifest files to merge.
Eric Erfanian415dffb2017-08-08 14:32:39 -070068DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
69DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070070
Eric Erfanianccca3152017-02-22 16:32:36 -080071# Merge all manifest files.
72LOCAL_FULL_LIBS_MANIFEST_FILES := \
73 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
Eric Erfanian1ce79b92017-08-10 08:11:26 -070074
75# * b/62875795 include manually generated GRPC service class:
76ifeq ($(HOST_OS),linux)
77 define gen-dialer-grpc
78 $(shell cd $(LOCAL_PATH) ; \
79 ../../../prebuilts/tools/linux-x86_64/protoc/bin/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 \
80 --grpc-java_out=lite:"java/com/android/voicemail/impl/" \
81 --proto_path="java/com/android/voicemail/impl/transcribe/grpc/" "java/com/android/voicemail/impl/transcribe/grpc/voicemail_transcription.proto")
82 endef
83endif
84ifeq ($(HOST_OS),darwin)
85 define gen-dialer-grpc
86 $(shell cd $(LOCAL_PATH) ; \
87 ../../../prebuilts/tools/darwin-x86_64/protoc/bin/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-osx-x86_64.exe \
88 --grpc-java_out=lite:"java/com/android/voicemail/impl/" \
89 --proto_path="java/com/android/voicemail/impl/transcribe/grpc/" "java/com/android/voicemail/impl/transcribe/grpc/voicemail_transcription.proto")
90 endef
91endif
92
93$(call gen-dialer-grpc)
94
Eric Erfanianccca3152017-02-22 16:32:36 -080095LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070096LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanian1ce79b92017-08-10 08:11:26 -070097# * b/62875795 include manually generated GRPC service class:
98LOCAL_SRC_FILES += java/com/android/voicemail/impl/com/google/internal/communications/voicemailtranscription/v1/VoicemailTranscriptionServiceGrpc.java
Eric Erfanian8369df02017-05-03 10:27:13 -070099LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS))
Eric Erfanian9bdb5032017-08-09 15:37:50 -0700100
101# Backup Library
102BACKUP_LIB_SRC_DIR := ../../../external/libbackup/src/com/google/android/libraries/backup
103EXCLUDE_BACKUP_LIB_SRCS := $(call all-java-files-under, $(BACKUP_LIB_SRC_DIR)/shadow)
104LOCAL_SRC_FILES += $(call all-java-files-under, $(BACKUP_LIB_SRC_DIR))
105LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_BACKUP_LIB_SRCS),$(LOCAL_SRC_FILES))
106
Eric Erfanian8369df02017-05-03 10:27:13 -0700107LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
108
Eric Erfanian415dffb2017-08-08 14:32:39 -0700109LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
110
111define all-dialer-manifest-extra-packages
112 $(shell cd $(LOCAL_PATH) ; \
113 find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g')
114endef
115
116EXCLUDE_EXTRA_PACKAGES := \
117 com.android.dialer.binary.aosp.testing \
118 com.android.dialer.binary.google \
119 com.android.incallui.calllocation.impl \
120 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -0800121
122# We specify each package explicitly to glob resource files.
Eric Erfanian415dffb2017-08-08 14:32:39 -0700123LOCAL_AAPT_FLAGS := $(call all-dialer-manifest-extra-packages)
124LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
125LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
126LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800127 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700128 --extra-packages me.leolin.shortcutbadger \
129
Chiao Cheng94b10b52012-08-17 16:59:12 -0700130LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800131 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700132 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800133 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700134 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700135 dialer-dagger2-target \
136 dialer-disklrucache-target \
137 dialer-gifdecoder-target \
138 dialer-glide-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700139 dialer-grpc-all-target \
140 dialer-grpc-context-target \
141 dialer-grpc-core-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700142 dialer-grpc-okhttp-target \
143 dialer-grpc-protobuf-lite-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700144 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700145 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700146 dialer-javax-annotation-api-target \
147 dialer-javax-inject-target \
148 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700149 dialer-mime4j-core-target \
150 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800151 jsr305 \
152 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700153 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700154
Alan Viveretteb5870be2017-04-26 11:15:10 -0400155LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700156 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400157 android-support-design \
158 android-support-transition \
159 android-support-v13 \
160 android-support-v4 \
161 android-support-v7-appcompat \
162 android-support-v7-cardview \
163 android-support-v7-recyclerview \
164
Eric Erfanianccca3152017-02-22 16:32:36 -0800165LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700166 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700167 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800168
169# Libraries needed by the compiler (JACK) to generate code.
170PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700171 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800172 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700173 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800174 dialer-dagger2-producers \
175 dialer-guava \
176 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700177 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800178
179# Resolve the jar paths.
180PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700181# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800182LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
183
184LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700185LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700186
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700187
188# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700189LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700190LOCAL_JACK_FLAGS := --multi-dex native
191
192LOCAL_PROGUARD_ENABLED := disabled
193ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700194
195define all-dialer-proguard-flags
196 $(shell cd $(LOCAL_PATH) ; \
197 find . -type f -name "proguard.*flags" | uniq | sort | cut -c 3-)
198endef
199
Eric Erfanian90508232017-03-24 09:31:16 -0700200# Proguard includes
Eric Erfanian415dffb2017-08-08 14:32:39 -0700201LOCAL_PROGUARD_FLAG_FILES := $(call all-dialer-proguard-flags)
Colin Crossf939e092017-04-05 22:13:40 -0700202LOCAL_PROGUARD_ENABLED := custom
203
Colin Crossf939e092017-04-05 22:13:40 -0700204LOCAL_PROGUARD_ENABLED += optimization
205endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700206
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700207# End Bug: 37077388
208
Ta-wei Yen6640e552017-04-21 15:33:24 -0700209LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800210LOCAL_MODULE_TAGS := optional
211LOCAL_PACKAGE_NAME := Dialer
212LOCAL_CERTIFICATE := shared
213LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700214LOCAL_USE_AAPT2 := true
215
216# b/37483961 - Jack Not Compiling Dagger Class Properly
217LOCAL_JACK_ENABLED := javac_frontend
218
Chiao Cheng94b10b52012-08-17 16:59:12 -0700219include $(BUILD_PACKAGE)
220
Eric Erfanianccca3152017-02-22 16:32:36 -0800221# Cleanup local state
222BASE_DIR :=
223SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700224EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800225RES_DIRS :=
226DIALER_MANIFEST_FILES :=
227PROCESSOR_LIBRARIES_TARGET :=
228PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700229EXCLUDE_MANIFESTS :=
230EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanian9bdb5032017-08-09 15:37:50 -0700231BACKUP_LIB_SRC_DIR :=
232EXCLUDE_BACKUP_LIB_SRCS :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800233
234# Create references to prebuilt libraries.
235include $(CLEAR_VARS)
236
237LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700238 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 -0700239 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 -0700240 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
241 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 -0700242 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
243 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
244 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
245 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) \
246 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 -0700247 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 -0700248 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) \
249 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 -0800250
251include $(BUILD_MULTI_PREBUILT)
252
Eric Erfanian90508232017-03-24 09:31:16 -0700253# Enumerate target prebuilts to avoid linker warnings like
254# Dialer (java:sdk) should not link to dialer-guava (java:platform)
255include $(CLEAR_VARS)
256
257LOCAL_MODULE_CLASS := JAVA_LIBRARIES
258LOCAL_MODULE := dialer-guava-target
259LOCAL_SDK_VERSION := current
260LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
261LOCAL_UNINSTALLABLE_MODULE := true
262
263include $(BUILD_PREBUILT)
264
265include $(CLEAR_VARS)
266
267LOCAL_MODULE_CLASS := JAVA_LIBRARIES
268LOCAL_MODULE := dialer-dagger2-target
269LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700270LOCAL_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 -0700271LOCAL_UNINSTALLABLE_MODULE := true
272
273include $(BUILD_PREBUILT)
274
275include $(CLEAR_VARS)
276
277LOCAL_MODULE_CLASS := JAVA_LIBRARIES
278LOCAL_MODULE := dialer-disklrucache-target
279LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700280LOCAL_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 -0700281LOCAL_UNINSTALLABLE_MODULE := true
282
283include $(BUILD_PREBUILT)
284
285include $(CLEAR_VARS)
286
287LOCAL_MODULE_CLASS := JAVA_LIBRARIES
288LOCAL_MODULE := dialer-gifdecoder-target
289LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700290LOCAL_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 -0700291LOCAL_UNINSTALLABLE_MODULE := true
292
293include $(BUILD_PREBUILT)
294
295include $(CLEAR_VARS)
296
297LOCAL_MODULE_CLASS := JAVA_LIBRARIES
298LOCAL_MODULE := dialer-glide-target
299LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700300LOCAL_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 -0700301LOCAL_UNINSTALLABLE_MODULE := true
302
303include $(BUILD_PREBUILT)
304
305include $(CLEAR_VARS)
306
307LOCAL_MODULE_CLASS := JAVA_LIBRARIES
308LOCAL_MODULE := dialer-javax-annotation-api-target
309LOCAL_SDK_VERSION := current
310LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
311LOCAL_UNINSTALLABLE_MODULE := true
312
313include $(BUILD_PREBUILT)
314
315include $(CLEAR_VARS)
316
317LOCAL_MODULE_CLASS := JAVA_LIBRARIES
318LOCAL_MODULE := dialer-libshortcutbadger-target
319LOCAL_SDK_VERSION := current
320LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
321LOCAL_UNINSTALLABLE_MODULE := true
322
323include $(BUILD_PREBUILT)
324
325include $(CLEAR_VARS)
326
327LOCAL_MODULE_CLASS := JAVA_LIBRARIES
328LOCAL_MODULE := dialer-javax-inject-target
329LOCAL_SDK_VERSION := current
330LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
331LOCAL_UNINSTALLABLE_MODULE := true
332
333include $(BUILD_PREBUILT)
334
Eric Erfanianccca3152017-02-22 16:32:36 -0800335include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700336
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700337LOCAL_MODULE_CLASS := JAVA_LIBRARIES
338LOCAL_MODULE := dialer-commons-io-target
339LOCAL_SDK_VERSION := current
340LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
341LOCAL_UNINSTALLABLE_MODULE := true
342
343include $(BUILD_PREBUILT)
344
345include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700346
347LOCAL_MODULE_CLASS := JAVA_LIBRARIES
348LOCAL_MODULE := dialer-mime4j-core-target
349LOCAL_SDK_VERSION := current
350LOCAL_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)
351LOCAL_UNINSTALLABLE_MODULE := true
352
353include $(BUILD_PREBUILT)
354
355include $(CLEAR_VARS)
356
357LOCAL_MODULE_CLASS := JAVA_LIBRARIES
358LOCAL_MODULE := dialer-mime4j-dom-target
359LOCAL_SDK_VERSION := current
360LOCAL_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)
361LOCAL_UNINSTALLABLE_MODULE := true
362
363include $(BUILD_PREBUILT)
364
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700365include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700366
367LOCAL_MODULE_CLASS := JAVA_LIBRARIES
368LOCAL_MODULE := dialer-grpc-core-target
369LOCAL_SDK_VERSION := current
370LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
371LOCAL_UNINSTALLABLE_MODULE := true
372
373include $(BUILD_PREBUILT)
374
375include $(CLEAR_VARS)
376
377LOCAL_MODULE_CLASS := JAVA_LIBRARIES
378LOCAL_MODULE := dialer-grpc-okhttp-target
379LOCAL_SDK_VERSION := current
380LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
381LOCAL_UNINSTALLABLE_MODULE := true
382
383include $(BUILD_PREBUILT)
384
385include $(CLEAR_VARS)
386
387LOCAL_MODULE_CLASS := JAVA_LIBRARIES
388LOCAL_MODULE := dialer-grpc-protobuf-lite-target
389LOCAL_SDK_VERSION := current
390LOCAL_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)
391LOCAL_UNINSTALLABLE_MODULE := true
392
393include $(BUILD_PREBUILT)
394
395include $(CLEAR_VARS)
396
397LOCAL_MODULE_CLASS := JAVA_LIBRARIES
398LOCAL_MODULE := dialer-grpc-stub-target
399LOCAL_SDK_VERSION := current
400LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
401LOCAL_UNINSTALLABLE_MODULE := true
402
403include $(BUILD_PREBUILT)
404
405include $(CLEAR_VARS)
406
407LOCAL_MODULE_CLASS := JAVA_LIBRARIES
408LOCAL_MODULE := dialer-grpc-all-target
409LOCAL_SDK_VERSION := current
410LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
411LOCAL_UNINSTALLABLE_MODULE := true
412
413include $(BUILD_PREBUILT)
414
415include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700416
417LOCAL_MODULE_CLASS := JAVA_LIBRARIES
418LOCAL_MODULE := dialer-grpc-context-target
419LOCAL_SDK_VERSION := current
420LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
421LOCAL_UNINSTALLABLE_MODULE := true
422
423include $(BUILD_PREBUILT)
424
wangqi69674662017-06-29 13:14:51 -0700425include $(CLEAR_VARS)