-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdevice.mk
165 lines (132 loc) · 4.58 KB
/
device.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#
# Copyright (C) 2021 The LineageOS Project
#
# SPDX-License-Identifier: Apache-2.0
#
# Inherit from those products. Most specific first.
$(call inherit-product, $(SRC_TARGET_DIR)/product/core_64_bit.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/full_base_telephony.mk)
$(call inherit-product, $(SRC_TARGET_DIR)/product/gsi_keys.mk)
# Setup dalvik vm configs
$(call inherit-product, frameworks/native/build/phone-xhdpi-6144-dalvik-heap.mk)
# Inherit from vendor if exists
$(call inherit-product-if-exists, vendor/xiaomi/juice/juice-vendor.mk)
# Inherit QTI Bluetooth
$(call inherit-product, vendor/qcom/opensource/commonsys-intf/bluetooth/bt-system-opensource-product.mk)
# Shipping API
PRODUCT_SHIPPING_API_LEVEL := 29
# Target VNDK
PRODUCT_TARGET_VNDK_VERSION := 30
# Partition
PRODUCT_BUILD_SUPER_PARTITION := false
PRODUCT_USE_DYNAMIC_PARTITIONS := true
BOARD_BUILD_PRODUCT_IMAGE := true
# Soong Namespace
PRODUCT_SOONG_NAMESPACES += \
$(LOCAL_PATH)
# Add default implementation of fastboot HAL.
PRODUCT_PACKAGES += [email protected]
# ANT+
PRODUCT_PACKAGES += \
AntHalService-Soong \
com.dsi.ant.antradio_library \
# Audio
PRODUCT_PACKAGES += \
android.hardware.audio.service \
vendor.qti.hardware.audiohalext-utils
PRODUCT_PACKAGES += \
audio.a2dp.default
PRODUCT_PACKAGES += \
tinymix \
libaudio-resampler
# Bluetooth
PRODUCT_PACKAGES += \
BluetoothQti
# Graphene Camera
PRODUCT_PACKAGES += \
GrapheneCamera
# Codec2 modules
PRODUCT_PACKAGES += \
com.android.media.swcodec \
libsfplugin_ccodec
# Codec2 files
PRODUCT_COPY_FILES += \
frameworks/av/media/libstagefright/data/media_codecs_google_c2_audio.xml:$(TARGET_COPY_OUT_PRODUCT)/vendor_overlay/$(PRODUCT_TARGET_VNDK_VERSION)/etc/media_codecs_google_c2_audio.xml \
frameworks/av/media/libstagefright/data/media_codecs_google_c2_telephony.xml:$(TARGET_COPY_OUT_PRODUCT)/vendor_overlay/$(PRODUCT_TARGET_VNDK_VERSION)/etc/media_codecs_google_c2_telephony.xml \
frameworks/av/media/libstagefright/data/media_codecs_google_c2_video.xml:$(TARGET_COPY_OUT_PRODUCT)/vendor_overlay/$(PRODUCT_TARGET_VNDK_VERSION)/etc/media_codecs_google_c2_video.xml
# Display
PRODUCT_PACKAGES += \
libdisplayconfig \
libqdMetaData \
libqdMetaData.system
# Vulkan
PRODUCT_PACKAGES += \
libvulkan
# Fastbootd
PRODUCT_PACKAGES += \
fastbootd
# Google Photos
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/configs/pixel_2016_exclusive.xml:$(TARGET_COPY_OUT_SYSTEM)/etc/sysconfig/pixel_2016_exclusive.xml
# Health
PRODUCT_PACKAGES += \
# Sensors
PRODUCT_PACKAGES += \
libsensorndkbridge \
# Telephony
PRODUCT_PACKAGES += \
ims-ext-common \
ims_ext_common.xml \
qti-telephony-hidl-wrapper \
qti_telephony_hidl_wrapper.xml \
qti-telephony-utils \
qti_telephony_utils.xml \
telephony-ext
PRODUCT_BOOT_JARS += \
telephony-ext
# Fstab
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/rootdir/etc/fstab.default:$(TARGET_COPY_OUT_RAMDISK)/fstab.default
# Input
PRODUCT_COPY_FILES += \
$(LOCAL_PATH)/keylayout/gpio-keys.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/gpio-keys.kl \
$(LOCAL_PATH)/keylayout/uinput-fpc.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-fpc.kl \
$(LOCAL_PATH)/keylayout/uinput-goodix.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-goodix.kl \
$(LOCAL_PATH)/keylayout/uinput-focal.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-focal.kl \
$(LOCAL_PATH)/keylayout/uinput-cdfinger.kl:$(TARGET_COPY_OUT_SYSTEM)/usr/keylayout/uinput-cdfinger.kl
# Lights
PRODUCT_PACKAGES += \
[email protected]_juice
# Power
PRODUCT_PACKAGES += \
android.hardware.power-service-qti
# Overlays
DEVICE_PACKAGE_OVERLAYS += \
$(LOCAL_PATH)/overlay
# Remove unwanted packages
PRODUCT_PACKAGES += \
RemovePackages
# Vendor Overlay
PRODUCT_COPY_FILES += \
$(call find-copy-subdir-files,*,$(LOCAL_PATH)/vendor-overlay/,$(TARGET_COPY_OUT_PRODUCT)/vendor_overlay/$(PRODUCT_TARGET_VNDK_VERSION))
PRODUCT_PACKAGES += \
AospFrameworkResOverlay \
AospWifiResOverlay \
GmsTelecommOverlay \
GmsTelephonyOverlay \
CarrierConfigResCommon \
CellBroadcastReceiverResCommon \
FrameworksResCommon \
FrameworksResTarget \
SystemUIResCommon \
TelecommResCommon \
TelephonyResCommon \
WifiResCommon \
NotchBarKiller