blob: 0544223e9f8c14c0ec3ca8e0a74d632f8143b979 [file] [log] [blame]
micky38718f07ac2019-06-10 00:40:50 +02001# Copyright (C) 2016 The CyanogenMod Project
2# Copyright (C) 2019 The OmniRom 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#
17# This file is the build configuration for a full Android
18# build for grouper hardware. This cleanly combines a set of
19# device-specific aspects (drivers) with a device-agnostic
20# product configuration (apps).
21#
22$(call inherit-product, vendor/asus/zenfone6/device-vendor.mk)
23$(call inherit-product-if-exists, vendor/gapps/arm64/arm64-vendor.mk)
24
25#from build treble includes
26PRODUCT_COPY_FILES += \
27 system/core/rootdir/init.zygote64_32.rc:root/init.zygote64_32.rc \
28 system/core/rootdir/init.zygote32_64.rc:root/init.zygote32_64.rc
29
micky387a8d96182019-06-11 13:36:14 +020030# Overlays
31DEVICE_PACKAGE_OVERLAYS += \
32 $(LOCAL_PATH)/overlay
33
micky3874eedc682019-06-11 02:29:28 +020034# A/B
35AB_OTA_PARTITIONS += \
36 boot \
37 dtbo \
38 system \
39 vbmeta
40
41AB_OTA_POSTINSTALL_CONFIG += \
42 RUN_POSTINSTALL_system=true \
43 POSTINSTALL_PATH_system=system/bin/otapreopt_script \
44 FILESYSTEM_TYPE_system=ext4 \
45 POSTINSTALL_OPTIONAL_system=true
46
micky38718f07ac2019-06-10 00:40:50 +020047# ANT+
48PRODUCT_PACKAGES += \
49 AntHalService
50
51# audio
52PRODUCT_PACKAGES += \
53 audio.a2dp.default
54
LuK133769135952018-09-09 17:39:16 +020055PRODUCT_COPY_FILES += \
56 $(LOCAL_PATH)/audio/audio_policy_configuration.xml:system/etc/audio_policy_configuration.xml
57
micky387e96abca2019-06-11 02:35:20 +020058# Boot control
59PRODUCT_PACKAGES_DEBUG += \
60 bootctl
61
62PRODUCT_STATIC_BOOT_CONTROL_HAL := \
micky38703cfada2019-07-27 07:43:19 +020063 bootctrl.msmnile \
micky387e96abca2019-06-11 02:35:20 +020064 libcutils \
65 libgptutils \
66 libz
67
micky38752076e82019-06-11 02:23:57 +020068# Camera
69PRODUCT_PACKAGES += \
70 SnapdragonCamera2
71
micky38795b3a992019-06-11 03:21:49 +020072# Charger images
73PRODUCT_PACKAGES += \
74 omni_charger_res_images \
75 animation.txt \
76 font_charger.png
77
micky38754bf1022019-07-03 03:31:11 +020078# DeviceParts
79PRODUCT_PACKAGES += \
micky3879844ec52019-08-07 20:16:37 +020080 DeviceParts \
81 OmniDisplayManager
micky38754bf1022019-07-03 03:31:11 +020082
micky38718f07ac2019-06-10 00:40:50 +020083# Display
84PRODUCT_PACKAGES += \
85 libion \
86 libtinyxml2
87
88PRODUCT_PACKAGES += \
89 libtinyalsa
90
91PRODUCT_PACKAGES += \
92 ld.config.txt
93
Fenglin Wuc1f19de2018-07-10 10:51:08 +080094# Exclude vibrator from InputManager
95PRODUCT_COPY_FILES += \
96 $(LOCAL_PATH)/configs/excluded-input-devices.xml:system/etc/excluded-input-devices.xml
97
micky3872e9a6b72019-07-02 20:48:08 +020098# Input
99PRODUCT_COPY_FILES += \
100 $(LOCAL_PATH)/keylayout/fts_ts.kl:system/usr/keylayout/fts_ts.kl \
Demon000b9538f12019-05-23 21:11:03 +0200101 $(LOCAL_PATH)/keylayout/goodixfp.kl:system/usr/keylayout/goodixfp.kl \
102 $(LOCAL_PATH)/keylayout/googlekey_input.kl:system/usr/keylayout/googlekey_input.kl
micky3872e9a6b72019-07-02 20:48:08 +0200103
micky38718f07ac2019-06-10 00:40:50 +0200104# Live Wallpapers
105PRODUCT_PACKAGES += \
106 LiveWallpapers \
107 LiveWallpapersPicker \
108 VisualizationWallpapers \
109 librs_jni
110
Luca Stefani63bdfc12019-07-14 18:44:22 +0200111# Lights
112PRODUCT_PACKAGES += \
113 lights.msmnile:64
114
Luca Stefani13643de2019-07-10 18:52:13 +0200115# Media
116PRODUCT_COPY_FILES += \
117 $(LOCAL_PATH)/configs/media_profiles_vendor.xml:system/etc/media_profiles_vendor.xml
118
micky387e5ae8c72019-08-07 20:01:48 +0200119# NFC - NQ (NXP)
120PRODUCT_PACKAGES += \
121 Tag \
122 com.android.nfc_extras
123
124PRODUCT_PACKAGES += \
125 android.hardware.nfc@1.1 \
126 android.hardware.nfc@1.0
127
micky38718f07ac2019-06-10 00:40:50 +0200128# Prebuilt
129PRODUCT_COPY_FILES += \
130 $(call find-copy-subdir-files,*,device/asus/zenfone6/prebuilt/system,system) \
131 $(call find-copy-subdir-files,*,device/asus/zenfone6/prebuilt/root,root)
132
133PRODUCT_AAPT_CONFIG := xxhdpi
134PRODUCT_AAPT_PREF_CONFIG := xxhdpi
135
Peter Cai926c1ef2019-08-05 10:47:16 +0200136# Rootdir
137PRODUCT_COPY_FILES += \
138 $(LOCAL_PATH)/recovery.fstab:system/etc/fstab.qcom
139
micky38718f07ac2019-06-10 00:40:50 +0200140# Netutils
141PRODUCT_PACKAGES += \
142 netutils-wrapper-1.0 \
143 libandroid_net
144
145PRODUCT_PACKAGES += \
146 vndk_package
147
148PRODUCT_PACKAGES += \
149 android.hidl.base@1.0
150
151PRODUCT_PACKAGES += \
micky3879a5e6fb2019-08-07 20:26:13 +0200152 vendor.display.config@1.5
micky38718f07ac2019-06-10 00:40:50 +0200153
154# Telephony
155PRODUCT_PACKAGES += \
156 telephony-ext
157
158PRODUCT_BOOT_JARS += \
159 telephony-ext
160
161# SP-NDK:
162PRODUCT_PACKAGES += \
163 libvulkan
164
micky387be0ade62019-06-11 03:20:23 +0200165# Update engine
166PRODUCT_PACKAGES += \
167 otapreopt_script \
168 brillo_update_payload \
169 update_engine \
170 update_engine_sideload \
171 update_verifier
172
173PRODUCT_PACKAGES_DEBUG += \
174 update_engine_client
175
micky38718f07ac2019-06-10 00:40:50 +0200176# WiFi Display
177PRODUCT_PACKAGES += \
178 libnl