blob: dfb0ee304e2ec21fb7949f88ee3edc4b14592e73 [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
Eric Erfanian8369df02017-05-03 10:27:13 -0700101LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
102
Eric Erfanian415dffb2017-08-08 14:32:39 -0700103LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
104
105define all-dialer-manifest-extra-packages
106 $(shell cd $(LOCAL_PATH) ; \
107 find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g')
108endef
109
110EXCLUDE_EXTRA_PACKAGES := \
111 com.android.dialer.binary.aosp.testing \
112 com.android.dialer.binary.google \
113 com.android.incallui.calllocation.impl \
114 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -0800115
116# We specify each package explicitly to glob resource files.
Eric Erfanian415dffb2017-08-08 14:32:39 -0700117LOCAL_AAPT_FLAGS := $(call all-dialer-manifest-extra-packages)
118LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
119LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
120LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800121 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700122 --extra-packages me.leolin.shortcutbadger \
123
Chiao Cheng94b10b52012-08-17 16:59:12 -0700124LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800125 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700126 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800127 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700128 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700129 dialer-dagger2-target \
130 dialer-disklrucache-target \
131 dialer-gifdecoder-target \
132 dialer-glide-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700133 dialer-grpc-all-target \
134 dialer-grpc-context-target \
135 dialer-grpc-core-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700136 dialer-grpc-okhttp-target \
137 dialer-grpc-protobuf-lite-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700138 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700139 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700140 dialer-javax-annotation-api-target \
141 dialer-javax-inject-target \
142 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700143 dialer-mime4j-core-target \
144 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800145 jsr305 \
146 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700147 volley \
Eric Erfaniand3dafe12017-08-18 08:20:09 -0700148 libbackup \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700149
Alan Viveretteb5870be2017-04-26 11:15:10 -0400150LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700151 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400152 android-support-design \
153 android-support-transition \
154 android-support-v13 \
155 android-support-v4 \
156 android-support-v7-appcompat \
157 android-support-v7-cardview \
158 android-support-v7-recyclerview \
159
Eric Erfanianccca3152017-02-22 16:32:36 -0800160LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700161 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700162 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800163
164# Libraries needed by the compiler (JACK) to generate code.
165PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700166 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800167 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700168 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800169 dialer-dagger2-producers \
170 dialer-guava \
171 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700172 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800173
174# Resolve the jar paths.
175PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700176# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800177LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
178
179LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700180LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700181
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700182
183# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700184LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700185LOCAL_JACK_FLAGS := --multi-dex native
186
187LOCAL_PROGUARD_ENABLED := disabled
188ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700189
190define all-dialer-proguard-flags
191 $(shell cd $(LOCAL_PATH) ; \
192 find . -type f -name "proguard.*flags" | uniq | sort | cut -c 3-)
193endef
194
Eric Erfanian90508232017-03-24 09:31:16 -0700195# Proguard includes
Eric Erfanian415dffb2017-08-08 14:32:39 -0700196LOCAL_PROGUARD_FLAG_FILES := $(call all-dialer-proguard-flags)
Colin Crossf939e092017-04-05 22:13:40 -0700197LOCAL_PROGUARD_ENABLED := custom
198
Colin Crossf939e092017-04-05 22:13:40 -0700199LOCAL_PROGUARD_ENABLED += optimization
200endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700201
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700202# End Bug: 37077388
203
Ta-wei Yen6640e552017-04-21 15:33:24 -0700204LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800205LOCAL_MODULE_TAGS := optional
206LOCAL_PACKAGE_NAME := Dialer
207LOCAL_CERTIFICATE := shared
208LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700209LOCAL_USE_AAPT2 := true
210
211# b/37483961 - Jack Not Compiling Dagger Class Properly
212LOCAL_JACK_ENABLED := javac_frontend
213
Chiao Cheng94b10b52012-08-17 16:59:12 -0700214include $(BUILD_PACKAGE)
215
Eric Erfanianccca3152017-02-22 16:32:36 -0800216# Cleanup local state
217BASE_DIR :=
218SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700219EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800220RES_DIRS :=
221DIALER_MANIFEST_FILES :=
222PROCESSOR_LIBRARIES_TARGET :=
223PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700224EXCLUDE_MANIFESTS :=
225EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800226
227# Create references to prebuilt libraries.
228include $(CLEAR_VARS)
229
230LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700231 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 -0700232 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 -0700233 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
234 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 -0700235 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
236 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
237 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
238 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) \
239 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 -0700240 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 -0700241 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) \
242 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 -0800243
244include $(BUILD_MULTI_PREBUILT)
245
Eric Erfanian90508232017-03-24 09:31:16 -0700246# Enumerate target prebuilts to avoid linker warnings like
247# Dialer (java:sdk) should not link to dialer-guava (java:platform)
248include $(CLEAR_VARS)
249
250LOCAL_MODULE_CLASS := JAVA_LIBRARIES
251LOCAL_MODULE := dialer-guava-target
252LOCAL_SDK_VERSION := current
253LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
254LOCAL_UNINSTALLABLE_MODULE := true
255
256include $(BUILD_PREBUILT)
257
258include $(CLEAR_VARS)
259
260LOCAL_MODULE_CLASS := JAVA_LIBRARIES
261LOCAL_MODULE := dialer-dagger2-target
262LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700263LOCAL_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 -0700264LOCAL_UNINSTALLABLE_MODULE := true
265
266include $(BUILD_PREBUILT)
267
268include $(CLEAR_VARS)
269
270LOCAL_MODULE_CLASS := JAVA_LIBRARIES
271LOCAL_MODULE := dialer-disklrucache-target
272LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700273LOCAL_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 -0700274LOCAL_UNINSTALLABLE_MODULE := true
275
276include $(BUILD_PREBUILT)
277
278include $(CLEAR_VARS)
279
280LOCAL_MODULE_CLASS := JAVA_LIBRARIES
281LOCAL_MODULE := dialer-gifdecoder-target
282LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700283LOCAL_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 -0700284LOCAL_UNINSTALLABLE_MODULE := true
285
286include $(BUILD_PREBUILT)
287
288include $(CLEAR_VARS)
289
290LOCAL_MODULE_CLASS := JAVA_LIBRARIES
291LOCAL_MODULE := dialer-glide-target
292LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700293LOCAL_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 -0700294LOCAL_UNINSTALLABLE_MODULE := true
295
296include $(BUILD_PREBUILT)
297
298include $(CLEAR_VARS)
299
300LOCAL_MODULE_CLASS := JAVA_LIBRARIES
301LOCAL_MODULE := dialer-javax-annotation-api-target
302LOCAL_SDK_VERSION := current
303LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
304LOCAL_UNINSTALLABLE_MODULE := true
305
306include $(BUILD_PREBUILT)
307
308include $(CLEAR_VARS)
309
310LOCAL_MODULE_CLASS := JAVA_LIBRARIES
311LOCAL_MODULE := dialer-libshortcutbadger-target
312LOCAL_SDK_VERSION := current
313LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
314LOCAL_UNINSTALLABLE_MODULE := true
315
316include $(BUILD_PREBUILT)
317
318include $(CLEAR_VARS)
319
320LOCAL_MODULE_CLASS := JAVA_LIBRARIES
321LOCAL_MODULE := dialer-javax-inject-target
322LOCAL_SDK_VERSION := current
323LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
324LOCAL_UNINSTALLABLE_MODULE := true
325
326include $(BUILD_PREBUILT)
327
Eric Erfanianccca3152017-02-22 16:32:36 -0800328include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700329
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700330LOCAL_MODULE_CLASS := JAVA_LIBRARIES
331LOCAL_MODULE := dialer-commons-io-target
332LOCAL_SDK_VERSION := current
333LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
334LOCAL_UNINSTALLABLE_MODULE := true
335
336include $(BUILD_PREBUILT)
337
338include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700339
340LOCAL_MODULE_CLASS := JAVA_LIBRARIES
341LOCAL_MODULE := dialer-mime4j-core-target
342LOCAL_SDK_VERSION := current
343LOCAL_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)
344LOCAL_UNINSTALLABLE_MODULE := true
345
346include $(BUILD_PREBUILT)
347
348include $(CLEAR_VARS)
349
350LOCAL_MODULE_CLASS := JAVA_LIBRARIES
351LOCAL_MODULE := dialer-mime4j-dom-target
352LOCAL_SDK_VERSION := current
353LOCAL_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)
354LOCAL_UNINSTALLABLE_MODULE := true
355
356include $(BUILD_PREBUILT)
357
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700358include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700359
360LOCAL_MODULE_CLASS := JAVA_LIBRARIES
361LOCAL_MODULE := dialer-grpc-core-target
362LOCAL_SDK_VERSION := current
363LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
364LOCAL_UNINSTALLABLE_MODULE := true
365
366include $(BUILD_PREBUILT)
367
368include $(CLEAR_VARS)
369
370LOCAL_MODULE_CLASS := JAVA_LIBRARIES
371LOCAL_MODULE := dialer-grpc-okhttp-target
372LOCAL_SDK_VERSION := current
373LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
374LOCAL_UNINSTALLABLE_MODULE := true
375
376include $(BUILD_PREBUILT)
377
378include $(CLEAR_VARS)
379
380LOCAL_MODULE_CLASS := JAVA_LIBRARIES
381LOCAL_MODULE := dialer-grpc-protobuf-lite-target
382LOCAL_SDK_VERSION := current
383LOCAL_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)
384LOCAL_UNINSTALLABLE_MODULE := true
385
386include $(BUILD_PREBUILT)
387
388include $(CLEAR_VARS)
389
390LOCAL_MODULE_CLASS := JAVA_LIBRARIES
391LOCAL_MODULE := dialer-grpc-stub-target
392LOCAL_SDK_VERSION := current
393LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
394LOCAL_UNINSTALLABLE_MODULE := true
395
396include $(BUILD_PREBUILT)
397
398include $(CLEAR_VARS)
399
400LOCAL_MODULE_CLASS := JAVA_LIBRARIES
401LOCAL_MODULE := dialer-grpc-all-target
402LOCAL_SDK_VERSION := current
403LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
404LOCAL_UNINSTALLABLE_MODULE := true
405
406include $(BUILD_PREBUILT)
407
408include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700409
410LOCAL_MODULE_CLASS := JAVA_LIBRARIES
411LOCAL_MODULE := dialer-grpc-context-target
412LOCAL_SDK_VERSION := current
413LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
414LOCAL_UNINSTALLABLE_MODULE := true
415
416include $(BUILD_PREBUILT)
417
wangqi69674662017-06-29 13:14:51 -0700418include $(CLEAR_VARS)