Anton Hansson | cf27a3d | 2018-06-27 18:25:33 +0100 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2018 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
Anton Hansson | 889018d | 2018-09-26 16:23:02 +0100 | [diff] [blame] | 17 | # This makefile is the basis of a generic system image for a handheld device. |
Anton Hansson | cac1fc8 | 2018-07-10 17:25:52 +0100 | [diff] [blame] | 18 | $(call inherit-product, $(SRC_TARGET_DIR)/product/handheld_system.mk) |
Anton Hansson | 889018d | 2018-09-26 16:23:02 +0100 | [diff] [blame] | 19 | $(call inherit-product, $(SRC_TARGET_DIR)/product/telephony_system.mk) |
Anton Hansson | c004218 | 2019-01-04 13:11:55 +0000 | [diff] [blame] | 20 | $(call inherit-product, $(SRC_TARGET_DIR)/product/languages_default.mk) |
Anton Hansson | 0cb36d7 | 2019-01-07 14:36:12 +0000 | [diff] [blame] | 21 | # Add adb keys to debuggable AOSP builds (if they exist) |
| 22 | $(call inherit-product-if-exists, vendor/google/security/adb/vendor_key.mk) |
Anton Hansson | cf27a3d | 2018-06-27 18:25:33 +0100 | [diff] [blame] | 23 | |
Dario Freni | 99f5e40 | 2019-12-06 15:47:23 +0000 | [diff] [blame^] | 24 | # Enable updating of APEXes |
| 25 | $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) |
| 26 | |
Anton Hansson | bfa4338 | 2018-09-27 13:48:17 +0100 | [diff] [blame] | 27 | # Shared java libs |
| 28 | PRODUCT_PACKAGES += \ |
| 29 | com.android.nfc_extras \ |
| 30 | |
Anton Hansson | 017e68e | 2018-09-27 11:57:08 +0100 | [diff] [blame] | 31 | # Applications |
| 32 | PRODUCT_PACKAGES += \ |
Anton Hansson | 017e68e | 2018-09-27 11:57:08 +0100 | [diff] [blame] | 33 | LiveWallpapersPicker \ |
| 34 | PartnerBookmarksProvider \ |
Anton Hansson | da02e86 | 2018-10-16 17:17:36 +0100 | [diff] [blame] | 35 | PresencePolling \ |
Anton Hansson | 017e68e | 2018-09-27 11:57:08 +0100 | [diff] [blame] | 36 | RcsService \ |
| 37 | SafetyRegulatoryInfo \ |
| 38 | Stk \ |
Anton Hansson | da77c52 | 2019-01-03 16:48:55 +0000 | [diff] [blame] | 39 | Tag \ |
Anton Hansson | cac5bff | 2018-11-06 10:58:44 +0000 | [diff] [blame] | 40 | TimeZoneUpdater \ |
Anton Hansson | 017e68e | 2018-09-27 11:57:08 +0100 | [diff] [blame] | 41 | |
Anton Hansson | 8879840 | 2018-11-13 15:19:34 +0000 | [diff] [blame] | 42 | # Binaries |
| 43 | PRODUCT_PACKAGES += llkd |
| 44 | |
Anton Hansson | deec280 | 2018-09-27 11:07:38 +0100 | [diff] [blame] | 45 | # OTA support |
Anton Hansson | 33611b1 | 2018-08-21 16:17:55 +0100 | [diff] [blame] | 46 | PRODUCT_PACKAGES += \ |
Anton Hansson | 91fddbb | 2019-01-25 11:07:15 +0000 | [diff] [blame] | 47 | recovery-refresh \ |
Anton Hansson | 33611b1 | 2018-08-21 16:17:55 +0100 | [diff] [blame] | 48 | update_engine \ |
| 49 | update_verifier \ |
| 50 | |
Anton Hansson | 2df4bce | 2018-09-28 15:18:53 +0100 | [diff] [blame] | 51 | # Wrapped net utils for /vendor access. |
Anton Hansson | 8879840 | 2018-11-13 15:19:34 +0000 | [diff] [blame] | 52 | PRODUCT_PACKAGES += netutils-wrapper-1.0 |
Anton Hansson | 2df4bce | 2018-09-28 15:18:53 +0100 | [diff] [blame] | 53 | |
Anton Hansson | aa23688 | 2018-10-16 17:34:33 +0100 | [diff] [blame] | 54 | # Charger images |
Anton Hansson | 8879840 | 2018-11-13 15:19:34 +0000 | [diff] [blame] | 55 | PRODUCT_PACKAGES += charger_res_images |
Anton Hansson | aa23688 | 2018-10-16 17:34:33 +0100 | [diff] [blame] | 56 | |
Anton Hansson | deec280 | 2018-09-27 11:07:38 +0100 | [diff] [blame] | 57 | # system_other support |
| 58 | PRODUCT_PACKAGES += \ |
| 59 | cppreopts.sh \ |
| 60 | otapreopt_script \ |
| 61 | |
Anton Hansson | c941007 | 2018-09-27 15:43:22 +0100 | [diff] [blame] | 62 | # Bluetooth libraries |
| 63 | PRODUCT_PACKAGES += \ |
| 64 | audio.a2dp.default \ |
| 65 | audio.hearing_aid.default \ |
| 66 | |
Anton Hansson | 8af128d | 2018-11-06 17:29:32 +0000 | [diff] [blame] | 67 | # For ringtones that rely on forward lock encryption |
| 68 | PRODUCT_PACKAGES += libfwdlockengine |
| 69 | |
Steven Moreland | bf4fd54 | 2019-10-08 09:28:30 -0700 | [diff] [blame] | 70 | # System libraries commonly depended on by things on the system_ext or product partitions. |
| 71 | # These lists will be pruned periodically. |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 72 | PRODUCT_PACKAGES += \ |
Anton Hansson | 1f6e024 | 2018-11-26 16:42:57 +0000 | [diff] [blame] | 73 | android.hardware.biometrics.fingerprint@2.1 \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 74 | android.hardware.radio@1.0 \ |
| 75 | android.hardware.radio@1.1 \ |
| 76 | android.hardware.radio@1.2 \ |
Justin Yun | bfe4a1c | 2019-08-26 17:09:27 +0900 | [diff] [blame] | 77 | android.hardware.radio@1.3 \ |
| 78 | android.hardware.radio@1.4 \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 79 | android.hardware.radio.config@1.0 \ |
| 80 | android.hardware.radio.deprecated@1.0 \ |
| 81 | android.hardware.secure_element@1.0 \ |
Ahmed ElArabawy | 69e62af | 2019-01-04 13:39:20 -0800 | [diff] [blame] | 82 | android.hardware.wifi@1.0 \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 83 | libaudio-resampler \ |
Mikhail Naganov | 4fc7e41 | 2019-10-16 10:06:50 -0700 | [diff] [blame] | 84 | libaudiohal \ |
Anton Hansson | 6f964f5 | 2019-04-11 17:00:24 +0100 | [diff] [blame] | 85 | libdrm \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 86 | liblogwrap \ |
| 87 | liblz4 \ |
| 88 | libminui \ |
Anton Hansson | 1f6e024 | 2018-11-26 16:42:57 +0000 | [diff] [blame] | 89 | libnl \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 90 | libprotobuf-cpp-full \ |
Anton Hansson | 6d8a179 | 2018-11-20 13:33:27 +0000 | [diff] [blame] | 91 | |
Steven Moreland | bf4fd54 | 2019-10-08 09:28:30 -0700 | [diff] [blame] | 92 | # These libraries are empty and have been combined into libhidlbase, but are still depended |
| 93 | # on by things off /system. |
| 94 | # TODO(b/135686713): remove these |
| 95 | PRODUCT_PACKAGES += \ |
| 96 | libhidltransport \ |
| 97 | libhwbinder \ |
| 98 | |
Emilian Peev | 55b9c1b | 2019-05-09 15:47:43 -0700 | [diff] [blame] | 99 | # Camera service uses 'libdepthphoto' for adding dynamic depth |
| 100 | # metadata inside depth jpegs. |
| 101 | PRODUCT_PACKAGES += \ |
| 102 | libdepthphoto \ |
| 103 | |
Anton Hansson | 28e0f03 | 2018-10-17 09:08:27 +0100 | [diff] [blame] | 104 | PRODUCT_PACKAGES_DEBUG += \ |
Anton Hansson | 36c5d0d | 2018-10-16 16:15:39 +0100 | [diff] [blame] | 105 | avbctl \ |
| 106 | bootctl \ |
| 107 | tinyplay \ |
| 108 | tinycap \ |
| 109 | tinymix \ |
| 110 | tinypcminfo \ |
| 111 | update_engine_client \ |
| 112 | |
Dan Willemsen | 3d05a08 | 2019-02-22 23:06:03 +0000 | [diff] [blame] | 113 | PRODUCT_HOST_PACKAGES += \ |
| 114 | tinyplay |
| 115 | |
Justin Yun | c0b883f | 2019-10-23 12:54:09 +0900 | [diff] [blame] | 116 | # Include all zygote init scripts. "ro.zygote" will select one of them. |
| 117 | PRODUCT_COPY_FILES += \ |
Tom Cherry | 89eea96 | 2019-11-04 10:41:51 -0800 | [diff] [blame] | 118 | system/core/rootdir/init.zygote32.rc:system/etc/init/hw/init.zygote32.rc \ |
| 119 | system/core/rootdir/init.zygote64.rc:system/etc/init/hw/init.zygote64.rc \ |
| 120 | system/core/rootdir/init.zygote32_64.rc:system/etc/init/hw/init.zygote32_64.rc \ |
| 121 | system/core/rootdir/init.zygote64_32.rc:system/etc/init/hw/init.zygote64_32.rc \ |
Justin Yun | c0b883f | 2019-10-23 12:54:09 +0900 | [diff] [blame] | 122 | |
SzuWei Lin | d7ae1bc | 2018-08-08 13:22:36 +0800 | [diff] [blame] | 123 | # Enable dynamic partition size |
| 124 | PRODUCT_USE_DYNAMIC_PARTITION_SIZE := true |
| 125 | |
Yo Chiang | 33b088d | 2019-09-26 17:29:18 +0800 | [diff] [blame] | 126 | PRODUCT_ENFORCE_RRO_TARGETS := * |
| 127 | |
Anton Hansson | cf27a3d | 2018-06-27 18:25:33 +0100 | [diff] [blame] | 128 | PRODUCT_NAME := mainline_system |
| 129 | PRODUCT_BRAND := generic |
Anton Hansson | cf27a3d | 2018-06-27 18:25:33 +0100 | [diff] [blame] | 130 | |
Tao Bao | 696bb33 | 2018-08-17 16:27:01 -0700 | [diff] [blame] | 131 | _base_mk_whitelist := |
Anton Hansson | cf27a3d | 2018-06-27 18:25:33 +0100 | [diff] [blame] | 132 | |
| 133 | _my_whitelist := $(_base_mk_whitelist) |
| 134 | |
Anton Hansson | b65a5ba | 2018-10-18 13:40:22 +0100 | [diff] [blame] | 135 | # For mainline, system.img should be mounted at /, so we include ROOT here. |
Anton Hansson | 173b5e7 | 2018-07-02 15:01:35 +0100 | [diff] [blame] | 136 | _my_paths := \ |
Anton Hansson | dcb5ef1 | 2018-10-15 11:35:15 +0100 | [diff] [blame] | 137 | $(TARGET_COPY_OUT_ROOT)/ \ |
| 138 | $(TARGET_COPY_OUT_SYSTEM)/ \ |
Anton Hansson | 173b5e7 | 2018-07-02 15:01:35 +0100 | [diff] [blame] | 139 | |
| 140 | $(call require-artifacts-in-path, $(_my_paths), $(_my_whitelist)) |