Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 1 | # Local modifications: |
Eric Erfanian | 9a090c8 | 2017-03-16 19:22:24 -0700 | [diff] [blame] | 2 | # * 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 Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 7 | # * b/62417801 removed translation string variant: |
| 8 | # java/com/android/incallui/res/values-af-mcc262-mnc01/strings.xml |
| 9 | # * 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 |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 13 | LOCAL_PATH:= $(call my-dir) |
| 14 | include $(CLEAR_VARS) |
| 15 | |
Kirill Grouchnikov | fa34097 | 2017-05-16 01:32:43 +0000 | [diff] [blame] | 16 | ifeq ($(TARGET_BUILD_APPS),) |
| 17 | support_library_root_dir := frameworks/support |
| 18 | else |
| 19 | support_library_root_dir := prebuilts/sdk/current/support |
| 20 | endif |
| 21 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 22 | # The base directory for Dialer sources. |
| 23 | BASE_DIR := java/com/android |
Jay Shrauner | 0f68a71 | 2014-07-16 16:13:57 -0700 | [diff] [blame] | 24 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 25 | # Primary dialer module sources. |
| 26 | SRC_DIRS := \ |
| 27 | $(BASE_DIR)/contacts/common \ |
| 28 | $(BASE_DIR)/dialer \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 29 | $(BASE_DIR)/dialershared \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 30 | $(BASE_DIR)/incallui \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 31 | $(BASE_DIR)/voicemail |
| 32 | |
| 33 | # Exclude files incompatible with AOSP. |
| 34 | EXCLUDE_FILES := \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 35 | $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \ |
| 36 | $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \ |
| 37 | $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \ |
| 38 | $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \ |
| 39 | $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \ |
| 40 | $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \ |
| 41 | $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \ |
| 42 | $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \ |
| 43 | $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \ |
| 44 | $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \ |
| 45 | $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \ |
| 46 | $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \ |
| 47 | $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \ |
| 48 | $(BASE_DIR)/incallui/maps/impl/MapsModule.java \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 49 | $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \ |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 50 | |
Paul Duffin | 922b108 | 2017-05-05 15:05:47 +0100 | [diff] [blame] | 51 | # Exclude testing only class, not used anywhere here |
| 52 | EXCLUDE_FILES += \ |
| 53 | $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java |
| 54 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 55 | # All Dialers resources. |
| 56 | # find . -type d -name "res" | uniq | sort |
| 57 | RES_DIRS := \ |
| 58 | assets/product/res \ |
| 59 | assets/quantum/res \ |
| 60 | $(BASE_DIR)/contacts/common/res \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 61 | $(BASE_DIR)/dialer/about/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 62 | $(BASE_DIR)/dialer/app/res \ |
| 63 | $(BASE_DIR)/dialer/app/voicemail/error/res \ |
| 64 | $(BASE_DIR)/dialer/blocking/res \ |
| 65 | $(BASE_DIR)/dialer/callcomposer/camera/camerafocus/res \ |
| 66 | $(BASE_DIR)/dialer/callcomposer/cameraui/res \ |
| 67 | $(BASE_DIR)/dialer/callcomposer/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 68 | $(BASE_DIR)/dialer/calldetails/res \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 69 | $(BASE_DIR)/dialer/calllog/ui/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 70 | $(BASE_DIR)/dialer/calllogutils/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 71 | $(BASE_DIR)/dialer/common/res \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 72 | $(BASE_DIR)/dialer/contactactions/res \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 73 | $(BASE_DIR)/dialer/contactsfragment/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 74 | $(BASE_DIR)/dialer/dialpadview/res \ |
| 75 | $(BASE_DIR)/dialer/interactions/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 76 | $(BASE_DIR)/dialer/notification/res \ |
| 77 | $(BASE_DIR)/dialer/oem/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 78 | $(BASE_DIR)/dialer/phonenumberutil/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 79 | $(BASE_DIR)/dialer/postcall/res \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 80 | $(BASE_DIR)/dialer/searchfragment/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 81 | $(BASE_DIR)/dialer/shortcuts/res \ |
Eric Erfanian | d8046e5 | 2017-04-06 09:41:50 -0700 | [diff] [blame] | 82 | $(BASE_DIR)/dialer/speeddial/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 83 | $(BASE_DIR)/dialer/theme/res \ |
| 84 | $(BASE_DIR)/dialer/util/res \ |
| 85 | $(BASE_DIR)/dialer/voicemailstatus/res \ |
| 86 | $(BASE_DIR)/dialer/widget/res \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 87 | $(BASE_DIR)/dialershared/bubble/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 88 | $(BASE_DIR)/incallui/answer/impl/affordance/res \ |
| 89 | $(BASE_DIR)/incallui/answer/impl/answermethod/res \ |
| 90 | $(BASE_DIR)/incallui/answer/impl/hint/res \ |
| 91 | $(BASE_DIR)/incallui/answer/impl/res \ |
| 92 | $(BASE_DIR)/incallui/audioroute/res \ |
| 93 | $(BASE_DIR)/incallui/autoresizetext/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 94 | $(BASE_DIR)/incallui/calllocation/impl/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 95 | $(BASE_DIR)/incallui/commontheme/res \ |
| 96 | $(BASE_DIR)/incallui/contactgrid/res \ |
| 97 | $(BASE_DIR)/incallui/hold/res \ |
| 98 | $(BASE_DIR)/incallui/incall/impl/res \ |
| 99 | $(BASE_DIR)/incallui/res \ |
| 100 | $(BASE_DIR)/incallui/sessiondata/res \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 101 | $(BASE_DIR)/incallui/speakerbuttonlogic/res \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 102 | $(BASE_DIR)/incallui/telecomeventui/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 103 | $(BASE_DIR)/incallui/video/impl/res \ |
Eric Erfanian | d8046e5 | 2017-04-06 09:41:50 -0700 | [diff] [blame] | 104 | $(BASE_DIR)/incallui/video/protocol/res \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 105 | $(BASE_DIR)/incallui/wifi/res \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 106 | $(BASE_DIR)/voicemail/impl/res \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 107 | |
Ta-wei Yen | 90a13e9 | 2016-01-11 13:00:53 -0800 | [diff] [blame] | 108 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 109 | # Dialer manifest files to merge. |
| 110 | # find . -type f -name "AndroidManifest.xml" | uniq | sort |
| 111 | DIALER_MANIFEST_FILES += \ |
| 112 | $(BASE_DIR)/contacts/common/AndroidManifest.xml \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 113 | $(BASE_DIR)/dialer/about/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 114 | $(BASE_DIR)/dialer/app/AndroidManifest.xml \ |
| 115 | $(BASE_DIR)/dialer/app/manifests/activities/AndroidManifest.xml \ |
| 116 | $(BASE_DIR)/dialer/app/voicemail/error/AndroidManifest.xml \ |
| 117 | $(BASE_DIR)/dialer/backup/AndroidManifest.xml \ |
| 118 | $(BASE_DIR)/dialer/blocking/AndroidManifest.xml \ |
| 119 | $(BASE_DIR)/dialer/callcomposer/AndroidManifest.xml \ |
| 120 | $(BASE_DIR)/dialer/callcomposer/camera/AndroidManifest.xml \ |
| 121 | $(BASE_DIR)/dialer/callcomposer/camera/camerafocus/AndroidManifest.xml \ |
| 122 | $(BASE_DIR)/dialer/callcomposer/cameraui/AndroidManifest.xml \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 123 | $(BASE_DIR)/dialer/calldetails/AndroidManifest.xml \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 124 | $(BASE_DIR)/dialer/calllog/ui/AndroidManifest.xml \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 125 | $(BASE_DIR)/dialer/calllogutils/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 126 | $(BASE_DIR)/dialer/common/AndroidManifest.xml \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 127 | $(BASE_DIR)/dialer/contactactions/AndroidManifest.xml \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 128 | $(BASE_DIR)/dialer/contactsfragment/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 129 | $(BASE_DIR)/dialer/dialpadview/AndroidManifest.xml \ |
| 130 | $(BASE_DIR)/dialer/interactions/AndroidManifest.xml \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 131 | $(BASE_DIR)/dialer/notification/AndroidManifest.xml \ |
| 132 | $(BASE_DIR)/dialer/oem/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 133 | $(BASE_DIR)/dialer/phonenumberutil/AndroidManifest.xml \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 134 | $(BASE_DIR)/dialer/postcall/AndroidManifest.xml \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 135 | $(BASE_DIR)/dialer/searchfragment/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 136 | $(BASE_DIR)/dialer/shortcuts/AndroidManifest.xml \ |
| 137 | $(BASE_DIR)/dialer/simulator/impl/AndroidManifest.xml \ |
Eric Erfanian | d8046e5 | 2017-04-06 09:41:50 -0700 | [diff] [blame] | 138 | $(BASE_DIR)/dialer/speeddial/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 139 | $(BASE_DIR)/dialer/theme/AndroidManifest.xml \ |
| 140 | $(BASE_DIR)/dialer/util/AndroidManifest.xml \ |
| 141 | $(BASE_DIR)/dialer/voicemailstatus/AndroidManifest.xml \ |
| 142 | $(BASE_DIR)/dialer/widget/AndroidManifest.xml \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 143 | $(BASE_DIR)/dialershared/bubble/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 144 | $(BASE_DIR)/incallui/AndroidManifest.xml \ |
| 145 | $(BASE_DIR)/incallui/answer/impl/affordance/AndroidManifest.xml \ |
| 146 | $(BASE_DIR)/incallui/answer/impl/AndroidManifest.xml \ |
| 147 | $(BASE_DIR)/incallui/answer/impl/answermethod/AndroidManifest.xml \ |
| 148 | $(BASE_DIR)/incallui/answer/impl/hint/AndroidManifest.xml \ |
| 149 | $(BASE_DIR)/incallui/audioroute/AndroidManifest.xml \ |
| 150 | $(BASE_DIR)/incallui/autoresizetext/AndroidManifest.xml \ |
| 151 | $(BASE_DIR)/incallui/commontheme/AndroidManifest.xml \ |
| 152 | $(BASE_DIR)/incallui/contactgrid/AndroidManifest.xml \ |
| 153 | $(BASE_DIR)/incallui/hold/AndroidManifest.xml \ |
| 154 | $(BASE_DIR)/incallui/incall/impl/AndroidManifest.xml \ |
| 155 | $(BASE_DIR)/incallui/sessiondata/AndroidManifest.xml \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 156 | $(BASE_DIR)/incallui/speakerbuttonlogic/AndroidManifest.xml \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 157 | $(BASE_DIR)/incallui/telecomeventui/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 158 | $(BASE_DIR)/incallui/video/impl/AndroidManifest.xml \ |
Eric Erfanian | d8046e5 | 2017-04-06 09:41:50 -0700 | [diff] [blame] | 159 | $(BASE_DIR)/incallui/video/protocol/AndroidManifest.xml \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 160 | $(BASE_DIR)/incallui/wifi/AndroidManifest.xml \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 161 | $(BASE_DIR)/voicemail/impl/AndroidManifest.xml \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 162 | $(BASE_DIR)/voicemail/AndroidManifest.xml \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 163 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 164 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 165 | # Merge all manifest files. |
| 166 | LOCAL_FULL_LIBS_MANIFEST_FILES := \ |
| 167 | $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES)) |
| 168 | LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS)) |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 169 | LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES)) |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 170 | LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS)) |
| 171 | LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH) |
| 172 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 173 | LOCAL_RESOURCE_DIR := \ |
| 174 | $(addprefix $(LOCAL_PATH)/, $(RES_DIRS)) \ |
Kirill Grouchnikov | fa34097 | 2017-05-16 01:32:43 +0000 | [diff] [blame] | 175 | $(support_library_root_dir)/design/res \ |
| 176 | $(support_library_root_dir)/transition/res \ |
| 177 | $(support_library_root_dir)/v7/appcompat/res \ |
| 178 | $(support_library_root_dir)/v7/cardview/res \ |
| 179 | $(support_library_root_dir)/v7/recyclerview/res |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 180 | |
| 181 | # We specify each package explicitly to glob resource files. |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 182 | LOCAL_AAPT_FLAGS := \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 183 | --auto-add-overlay \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 184 | --extra-packages com.android.contacts.common \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 185 | --extra-packages com.android.dialer.about \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 186 | --extra-packages com.android.dialer.app \ |
| 187 | --extra-packages com.android.dialer.app.voicemail.error \ |
| 188 | --extra-packages com.android.dialer.blocking \ |
| 189 | --extra-packages com.android.dialer.callcomposer \ |
| 190 | --extra-packages com.android.dialer.callcomposer \ |
| 191 | --extra-packages com.android.dialer.callcomposer.camera \ |
| 192 | --extra-packages com.android.dialer.callcomposer.camera.camerafocus \ |
| 193 | --extra-packages com.android.dialer.callcomposer.cameraui \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 194 | --extra-packages com.android.dialer.calldetails \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 195 | --extra-packages com.android.dialer.calllog.ui \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 196 | --extra-packages com.android.dialer.calllogutils \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 197 | --extra-packages com.android.dialer.common \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 198 | --extra-packages com.android.dialer.contactactions \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 199 | --extra-packages com.android.dialer.contactsfragment \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 200 | --extra-packages com.android.dialer.dialpadview \ |
| 201 | --extra-packages com.android.dialer.interactions \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 202 | --extra-packages com.android.dialer.notification \ |
| 203 | --extra-packages com.android.dialer.oem \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 204 | --extra-packages com.android.dialer.phonenumberutil \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 205 | --extra-packages com.android.dialer.postcall \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 206 | --extra-packages com.android.dialer.searchfragment \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 207 | --extra-packages com.android.dialer.shortcuts \ |
Eric Erfanian | d8046e5 | 2017-04-06 09:41:50 -0700 | [diff] [blame] | 208 | --extra-packages com.android.dialer.speeddial \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 209 | --extra-packages com.android.dialer.theme \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 210 | --extra-packages com.android.dialer.util \ |
| 211 | --extra-packages com.android.dialer.voicemailstatus \ |
| 212 | --extra-packages com.android.dialer.widget \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 213 | --extra-packages com.android.dialershared.bubble \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 214 | --extra-packages com.android.incallui \ |
| 215 | --extra-packages com.android.incallui.answer.impl \ |
| 216 | --extra-packages com.android.incallui.answer.impl.affordance \ |
| 217 | --extra-packages com.android.incallui.answer.impl.affordance \ |
| 218 | --extra-packages com.android.incallui.answer.impl.answermethod \ |
| 219 | --extra-packages com.android.incallui.answer.impl.hint \ |
| 220 | --extra-packages com.android.incallui.audioroute \ |
| 221 | --extra-packages com.android.incallui.autoresizetext \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 222 | --extra-packages com.android.incallui.calllocation \ |
| 223 | --extra-packages com.android.incallui.calllocation.impl \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 224 | --extra-packages com.android.incallui.commontheme \ |
| 225 | --extra-packages com.android.incallui.contactgrid \ |
| 226 | --extra-packages com.android.incallui.hold \ |
| 227 | --extra-packages com.android.incallui.incall.impl \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 228 | --extra-packages com.android.incallui.maps.impl \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 229 | --extra-packages com.android.incallui.sessiondata \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 230 | --extra-packages com.android.incallui.speakerbuttonlogic \ |
Eric Erfanian | c857f90 | 2017-05-15 14:05:33 -0700 | [diff] [blame] | 231 | --extra-packages com.android.incallui.telecomeventui \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 232 | --extra-packages com.android.incallui.video \ |
| 233 | --extra-packages com.android.incallui.video.impl \ |
| 234 | --extra-packages com.android.incallui.wifi \ |
| 235 | --extra-packages com.android.phone.common \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 236 | --extra-packages com.android.voicemail \ |
| 237 | --extra-packages com.android.voicemail.impl \ |
| 238 | --extra-packages com.android.voicemail.impl.fetch \ |
| 239 | --extra-packages com.android.voicemail.impl.settings \ |
| 240 | --extra-packages com.android.voicemail.settings \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 241 | --extra-packages me.leolin.shortcutbadger |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 242 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 243 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 244 | android-common \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 245 | android-support-dynamic-animation \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 246 | com.android.vcard \ |
Eric Erfanian | cdb1edf | 2017-03-29 10:20:40 -0700 | [diff] [blame] | 247 | dialer-commons-io-target \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 248 | dialer-dagger2-target \ |
| 249 | dialer-disklrucache-target \ |
| 250 | dialer-gifdecoder-target \ |
| 251 | dialer-glide-target \ |
| 252 | dialer-guava-target \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 253 | dialer-grpc-all-target \ |
| 254 | dialer-grpc-core-target \ |
| 255 | dialer-grpc-okhttp-target \ |
| 256 | dialer-grpc-protobuf-lite-target \ |
| 257 | dialer-grpc-stub-target \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 258 | dialer-javax-annotation-api-target \ |
| 259 | dialer-javax-inject-target \ |
| 260 | dialer-libshortcutbadger-target \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 261 | dialer-mime4j-core-target \ |
| 262 | dialer-mime4j-dom-target \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 263 | jsr305 \ |
| 264 | libphonenumber \ |
Eric Erfanian | cdb1edf | 2017-03-29 10:20:40 -0700 | [diff] [blame] | 265 | volley \ |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 266 | |
Alan Viverette | b5870be | 2017-04-26 11:15:10 -0400 | [diff] [blame] | 267 | LOCAL_STATIC_ANDROID_LIBRARIES := \ |
| 268 | android-support-design \ |
| 269 | android-support-transition \ |
| 270 | android-support-v13 \ |
| 271 | android-support-v4 \ |
| 272 | android-support-v7-appcompat \ |
| 273 | android-support-v7-cardview \ |
| 274 | android-support-v7-recyclerview \ |
| 275 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 276 | LOCAL_JAVA_LIBRARIES := \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 277 | org.apache.http.legacy \ |
| 278 | dialer-auto-value \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 279 | dialer-grpc-all \ |
| 280 | dialer-grpc-core \ |
| 281 | dialer-grpc-okhttp \ |
| 282 | dialer-grpc-protobuf-lite \ |
| 283 | dialer-grpc-stub \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 284 | |
| 285 | # Libraries needed by the compiler (JACK) to generate code. |
| 286 | PROCESSOR_LIBRARIES_TARGET := \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 287 | dialer-dagger2-compiler \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 288 | dialer-dagger2 \ |
| 289 | dialer-dagger2-producers \ |
| 290 | dialer-guava \ |
| 291 | dialer-javax-annotation-api \ |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 292 | dialer-javax-inject \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 293 | dialer-auto-value \ |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 294 | |
| 295 | # Resolve the jar paths. |
| 296 | PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET)) |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 297 | # Necessary for annotation processors to work correctly. |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 298 | LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS) |
| 299 | |
| 300 | LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS)) |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 301 | LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS)) |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 302 | |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 303 | # Proguard includes |
| 304 | LOCAL_PROGUARD_FLAG_FILES := \ |
| 305 | java/com/android/dialer/common/proguard.flags \ |
| 306 | java/com/android/dialer/proguard/proguard_base.flags \ |
| 307 | java/com/android/dialer/proguard/proguard.flags \ |
| 308 | java/com/android/dialer/proguard/proguard_release.flags \ |
| 309 | java/com/android/incallui/answer/impl/proguard.flags |
Colin Cross | f939e09 | 2017-04-05 22:13:40 -0700 | [diff] [blame] | 310 | LOCAL_PROGUARD_ENABLED := custom |
| 311 | |
| 312 | ifdef LOCAL_JACK_ENABLED |
| 313 | # Bug: 37077388 |
| 314 | LOCAL_PROGUARD_ENABLED += optimization |
| 315 | endif |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 316 | |
Ta-wei Yen | 6640e55 | 2017-04-21 15:33:24 -0700 | [diff] [blame] | 317 | LOCAL_SDK_VERSION := system_current |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 318 | LOCAL_MODULE_TAGS := optional |
| 319 | LOCAL_PACKAGE_NAME := Dialer |
| 320 | LOCAL_CERTIFICATE := shared |
| 321 | LOCAL_PRIVILEGED_MODULE := true |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 322 | LOCAL_USE_AAPT2 := true |
| 323 | |
| 324 | # b/37483961 - Jack Not Compiling Dagger Class Properly |
| 325 | LOCAL_JACK_ENABLED := javac_frontend |
| 326 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 327 | include $(BUILD_PACKAGE) |
| 328 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 329 | # Cleanup local state |
| 330 | BASE_DIR := |
| 331 | SRC_DIRS := |
Eric Erfanian | d5e47f6 | 2017-03-15 14:41:07 -0700 | [diff] [blame] | 332 | EXCLUDE_FILES := |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 333 | RES_DIRS := |
| 334 | DIALER_MANIFEST_FILES := |
| 335 | PROCESSOR_LIBRARIES_TARGET := |
| 336 | PROCESSOR_JARS := |
| 337 | |
| 338 | # Create references to prebuilt libraries. |
| 339 | include $(CLEAR_VARS) |
| 340 | |
| 341 | LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \ |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 342 | dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 343 | 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 Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 344 | dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 345 | dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 346 | dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 347 | dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 348 | dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 349 | dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \ |
| 350 | 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) \ |
| 351 | 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 Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 352 | 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) \ |
| 353 | dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX) |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 354 | |
| 355 | include $(BUILD_MULTI_PREBUILT) |
| 356 | |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 357 | # Enumerate target prebuilts to avoid linker warnings like |
| 358 | # Dialer (java:sdk) should not link to dialer-guava (java:platform) |
| 359 | include $(CLEAR_VARS) |
| 360 | |
| 361 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 362 | LOCAL_MODULE := dialer-guava-target |
| 363 | LOCAL_SDK_VERSION := current |
| 364 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 365 | LOCAL_UNINSTALLABLE_MODULE := true |
| 366 | |
| 367 | include $(BUILD_PREBUILT) |
| 368 | |
| 369 | include $(CLEAR_VARS) |
| 370 | |
| 371 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 372 | LOCAL_MODULE := dialer-dagger2-target |
| 373 | LOCAL_SDK_VERSION := current |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 374 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 375 | LOCAL_UNINSTALLABLE_MODULE := true |
| 376 | |
| 377 | include $(BUILD_PREBUILT) |
| 378 | |
| 379 | include $(CLEAR_VARS) |
| 380 | |
| 381 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 382 | LOCAL_MODULE := dialer-disklrucache-target |
| 383 | LOCAL_SDK_VERSION := current |
Lujiang Xue | c0f306f | 2017-05-25 09:10:58 -0700 | [diff] [blame] | 384 | LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX) |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 385 | LOCAL_UNINSTALLABLE_MODULE := true |
| 386 | |
| 387 | include $(BUILD_PREBUILT) |
| 388 | |
| 389 | include $(CLEAR_VARS) |
| 390 | |
| 391 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 392 | LOCAL_MODULE := dialer-gifdecoder-target |
| 393 | LOCAL_SDK_VERSION := current |
Lujiang Xue | c0f306f | 2017-05-25 09:10:58 -0700 | [diff] [blame] | 394 | LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX) |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 395 | LOCAL_UNINSTALLABLE_MODULE := true |
| 396 | |
| 397 | include $(BUILD_PREBUILT) |
| 398 | |
| 399 | include $(CLEAR_VARS) |
| 400 | |
| 401 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 402 | LOCAL_MODULE := dialer-glide-target |
| 403 | LOCAL_SDK_VERSION := current |
Lujiang Xue | c0f306f | 2017-05-25 09:10:58 -0700 | [diff] [blame] | 404 | LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX) |
Eric Erfanian | 9050823 | 2017-03-24 09:31:16 -0700 | [diff] [blame] | 405 | LOCAL_UNINSTALLABLE_MODULE := true |
| 406 | |
| 407 | include $(BUILD_PREBUILT) |
| 408 | |
| 409 | include $(CLEAR_VARS) |
| 410 | |
| 411 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 412 | LOCAL_MODULE := dialer-javax-annotation-api-target |
| 413 | LOCAL_SDK_VERSION := current |
| 414 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 415 | LOCAL_UNINSTALLABLE_MODULE := true |
| 416 | |
| 417 | include $(BUILD_PREBUILT) |
| 418 | |
| 419 | include $(CLEAR_VARS) |
| 420 | |
| 421 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 422 | LOCAL_MODULE := dialer-libshortcutbadger-target |
| 423 | LOCAL_SDK_VERSION := current |
| 424 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 425 | LOCAL_UNINSTALLABLE_MODULE := true |
| 426 | |
| 427 | include $(BUILD_PREBUILT) |
| 428 | |
| 429 | include $(CLEAR_VARS) |
| 430 | |
| 431 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 432 | LOCAL_MODULE := dialer-javax-inject-target |
| 433 | LOCAL_SDK_VERSION := current |
| 434 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 435 | LOCAL_UNINSTALLABLE_MODULE := true |
| 436 | |
| 437 | include $(BUILD_PREBUILT) |
| 438 | |
Eric Erfanian | ccca315 | 2017-02-22 16:32:36 -0800 | [diff] [blame] | 439 | include $(CLEAR_VARS) |
Eric Erfanian | cdb1edf | 2017-03-29 10:20:40 -0700 | [diff] [blame] | 440 | |
Eric Erfanian | cdb1edf | 2017-03-29 10:20:40 -0700 | [diff] [blame] | 441 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 442 | LOCAL_MODULE := dialer-commons-io-target |
| 443 | LOCAL_SDK_VERSION := current |
| 444 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 445 | LOCAL_UNINSTALLABLE_MODULE := true |
| 446 | |
| 447 | include $(BUILD_PREBUILT) |
| 448 | |
| 449 | include $(CLEAR_VARS) |
Eric Erfanian | 8369df0 | 2017-05-03 10:27:13 -0700 | [diff] [blame] | 450 | |
| 451 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 452 | LOCAL_MODULE := dialer-mime4j-core-target |
| 453 | LOCAL_SDK_VERSION := current |
| 454 | LOCAL_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) |
| 455 | LOCAL_UNINSTALLABLE_MODULE := true |
| 456 | |
| 457 | include $(BUILD_PREBUILT) |
| 458 | |
| 459 | include $(CLEAR_VARS) |
| 460 | |
| 461 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 462 | LOCAL_MODULE := dialer-mime4j-dom-target |
| 463 | LOCAL_SDK_VERSION := current |
| 464 | LOCAL_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) |
| 465 | LOCAL_UNINSTALLABLE_MODULE := true |
| 466 | |
| 467 | include $(BUILD_PREBUILT) |
| 468 | |
Ta-wei Yen | 6af9c02 | 2017-05-25 14:57:51 -0700 | [diff] [blame] | 469 | include $(CLEAR_VARS) |
Eric Erfanian | 91ce7d2 | 2017-06-05 13:35:02 -0700 | [diff] [blame^] | 470 | |
| 471 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 472 | LOCAL_MODULE := dialer-grpc-core-target |
| 473 | LOCAL_SDK_VERSION := current |
| 474 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 475 | LOCAL_UNINSTALLABLE_MODULE := true |
| 476 | |
| 477 | include $(BUILD_PREBUILT) |
| 478 | |
| 479 | include $(CLEAR_VARS) |
| 480 | |
| 481 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 482 | LOCAL_MODULE := dialer-grpc-okhttp-target |
| 483 | LOCAL_SDK_VERSION := current |
| 484 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 485 | LOCAL_UNINSTALLABLE_MODULE := true |
| 486 | |
| 487 | include $(BUILD_PREBUILT) |
| 488 | |
| 489 | include $(CLEAR_VARS) |
| 490 | |
| 491 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 492 | LOCAL_MODULE := dialer-grpc-protobuf-lite-target |
| 493 | LOCAL_SDK_VERSION := current |
| 494 | LOCAL_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) |
| 495 | LOCAL_UNINSTALLABLE_MODULE := true |
| 496 | |
| 497 | include $(BUILD_PREBUILT) |
| 498 | |
| 499 | include $(CLEAR_VARS) |
| 500 | |
| 501 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 502 | LOCAL_MODULE := dialer-grpc-stub-target |
| 503 | LOCAL_SDK_VERSION := current |
| 504 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 505 | LOCAL_UNINSTALLABLE_MODULE := true |
| 506 | |
| 507 | include $(BUILD_PREBUILT) |
| 508 | |
| 509 | include $(CLEAR_VARS) |
| 510 | |
| 511 | LOCAL_MODULE_CLASS := JAVA_LIBRARIES |
| 512 | LOCAL_MODULE := dialer-grpc-all-target |
| 513 | LOCAL_SDK_VERSION := current |
| 514 | LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) |
| 515 | LOCAL_UNINSTALLABLE_MODULE := true |
| 516 | |
| 517 | include $(BUILD_PREBUILT) |
| 518 | |
| 519 | include $(CLEAR_VARS) |