blob: 15f88580a5672038ab8d9a3fba81620a9568919f [file] [log] [blame]
Amit Pundirc738b812019-06-19 16:13:49 +05301#
2# Copyright (C) 2014 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
John Stultz01b21fc2020-02-06 23:14:28 +000017# Enable updating of APEXes
18$(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk)
19
Amit Pundirc738b812019-06-19 16:13:49 +053020# Device overlay
21DEVICE_PACKAGE_OVERLAYS := $(LOCAL_PATH)/overlay
22
23# Build and run only ART
24PRODUCT_RUNTIMES := runtime_libart_default
25
Amit Pundir276a0552019-11-23 22:27:15 +053026PRODUCT_SHIPPING_API_LEVEL := 29
27PRODUCT_OTA_ENFORCE_VINTF_KERNEL_REQUIREMENTS := false
Amit Pundirc738b812019-06-19 16:13:49 +053028
29# vndk
30PRODUCT_PACKAGES := vndk-sp
31
32# HACK: Avoid usb crash
33PRODUCT_PRODUCT_PROPERTIES := \
34 persist.adb.nonblocking_ffs=0 \
35 ro.adb.nonblocking_ffs=0
36
Amit Pundir276a0552019-11-23 22:27:15 +053037# Display
Amit Pundirc738b812019-06-19 16:13:49 +053038PRODUCT_PACKAGES += \
39 android.hardware.drm@1.0-impl \
40 android.hardware.drm@1.0-service \
41 android.hardware.graphics.allocator@2.0-impl \
42 android.hardware.graphics.allocator@2.0-service \
Amit Pundir276a0552019-11-23 22:27:15 +053043 android.hardware.graphics.composer@2.2-impl \
44 android.hardware.graphics.composer@2.2-service \
45 android.hardware.graphics.mapper@2.0-impl-2.1 \
Amit Pundirc738b812019-06-19 16:13:49 +053046 gralloc.gbm \
47 hwcomposer.drm \
48 libGLES_mesa
49
Amit Pundir276a0552019-11-23 22:27:15 +053050PRODUCT_PROPERTY_OVERRIDES += \
51 ro.hardware.gralloc=gbm \
52 ro.hardware.hwcomposer=drm \
53 debug.sf.no_hw_vsync=1 \
54 hwc.drm.use_framebuffer_target=1 \
55 hwc.drm.use_overlay_planes=0 \
56 ro.opengles.version=196609
57
Amit Pundirc738b812019-06-19 16:13:49 +053058# Use Launcher3QuickStep
59PRODUCT_PACKAGES += Launcher3QuickStep
60
61# Enable WiFi
62PRODUCT_PACKAGES += \
Amit Pundirc738b812019-06-19 16:13:49 +053063 hostapd \
64 libwpa_client \
65 wpa_supplicant \
66 wpa_supplicant.conf \
67 wificond \
68 wifilogd
69
Amit Pundir276a0552019-11-23 22:27:15 +053070PRODUCT_PROPERTY_OVERRIDES += \
Amit Pundirc738b812019-06-19 16:13:49 +053071 wifi.interface=wlan0 \
72 wifi.supplicant_scan_interval=15
73
74PRODUCT_COPY_FILES += \
75 frameworks/native/data/etc/android.hardware.wifi.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.xml \
76 frameworks/native/data/etc/android.hardware.wifi.direct.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.wifi.direct.xml \
Amit Pundir276a0552019-11-23 22:27:15 +053077 $(LOCAL_PATH)/etc/wifi/wpa_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/wpa_supplicant_overlay.conf \
78 $(LOCAL_PATH)/etc/wifi/p2p_supplicant_overlay.conf:$(TARGET_COPY_OUT_VENDOR)/etc/wifi/p2p_supplicant_overlay.conf
Amit Pundirc738b812019-06-19 16:13:49 +053079
80# Enable BT
81PRODUCT_PACKAGES += \
Amit Pundir1addda62020-02-02 13:07:33 +053082 android.hardware.bluetooth@1.1-service.btlinux
Amit Pundirc738b812019-06-19 16:13:49 +053083
84PRODUCT_COPY_FILES += \
85 frameworks/native/data/etc/android.hardware.bluetooth.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth.xml \
86 frameworks/native/data/etc/android.hardware.bluetooth_le.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.bluetooth_le.xml
87
88# Audio
89PRODUCT_PACKAGES += \
90 android.hardware.audio@4.0-impl:32 \
91 android.hardware.audio.effect@4.0-impl:32 \
92 android.hardware.audio@2.0-service \
Amit Pundirc738b812019-06-19 16:13:49 +053093 android.hardware.soundtrigger@2.0-impl
94
95# Build default bluetooth a2dp and usb audio HALs
96PRODUCT_PACKAGES += \
97 audio.a2dp.default \
98 audio.usb.default \
99 audio.r_submix.default
100
101# Build tinyalsa cli tools for debugging
102PRODUCT_PACKAGES += \
103 tinyplay \
104 tinycap \
105 tinymix \
106 tinypcminfo
107
108# audio policy configuration
109USE_XML_AUDIO_POLICY_CONF := 1
110PRODUCT_COPY_FILES += \
Amit Pundir276a0552019-11-23 22:27:15 +0530111 $(LOCAL_PATH)/etc/audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration.xml \
112 $(LOCAL_PATH)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_configuration_bluetooth_legacy_hal.xml \
Amit Pundirc738b812019-06-19 16:13:49 +0530113 frameworks/av/services/audiopolicy/config/a2dp_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_audio_policy_configuration.xml \
Amit Pundir276a0552019-11-23 22:27:15 +0530114 frameworks/av/services/audiopolicy/config/a2dp_in_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/a2dp_in_audio_policy_configuration.xml \
Amit Pundir648e1d02020-02-18 22:44:16 +0530115 frameworks/av/services/audiopolicy/config/primary_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/primary_audio_policy_configuration.xml \
Amit Pundir276a0552019-11-23 22:27:15 +0530116 frameworks/av/services/audiopolicy/config/bluetooth_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/bluetooth_audio_policy_configuration.xml \
Amit Pundirc738b812019-06-19 16:13:49 +0530117 frameworks/av/services/audiopolicy/config/r_submix_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/r_submix_audio_policy_configuration.xml \
118 frameworks/av/services/audiopolicy/config/usb_audio_policy_configuration.xml:$(TARGET_COPY_OUT_VENDOR)/etc/usb_audio_policy_configuration.xml \
119 frameworks/av/services/audiopolicy/config/default_volume_tables.xml:$(TARGET_COPY_OUT_VENDOR)/etc/default_volume_tables.xml \
120 frameworks/av/services/audiopolicy/config/audio_policy_volumes.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_policy_volumes.xml
121
122# Copy media codecs config file
123PRODUCT_COPY_FILES += \
Amit Pundir276a0552019-11-23 22:27:15 +0530124 $(LOCAL_PATH)/etc/media_codecs.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs.xml \
Amit Pundir648e1d02020-02-18 22:44:16 +0530125 frameworks/av/media/libeffects/data/audio_effects.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio_effects.xml \
Amit Pundir276a0552019-11-23 22:27:15 +0530126 frameworks/av/media/libstagefright/data/media_codecs_google_video.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_video.xml \
127 frameworks/av/media/libstagefright/data/media_codecs_google_audio.xml:$(TARGET_COPY_OUT_VENDOR)/etc/media_codecs_google_audio.xml
Amit Pundirc738b812019-06-19 16:13:49 +0530128
129# Memtrack
130PRODUCT_PACKAGES += \
131 memtrack.default \
132 android.hardware.memtrack@1.0-service \
133 android.hardware.memtrack@1.0-impl
134
135# Keymaster
136PRODUCT_PACKAGES += \
137 android.hardware.keymaster@3.0-impl \
138 android.hardware.keymaster@3.0-service
139
Amit Pundir0e965952019-08-01 19:27:43 +0530140# Gatekeeper
141PRODUCT_PACKAGES += \
142 android.hardware.gatekeeper@1.0-service.software
143
Amit Pundir276a0552019-11-23 22:27:15 +0530144# Health
145PRODUCT_PACKAGES += \
146 android.hardware.health@2.0-service \
147 android.hardware.health@2.0-impl
148
149# mkbootimg host tool to build boot.img separately
150PRODUCT_HOST_PACKAGES := \
151 mkbootimg
152
Amit Pundirc738b812019-06-19 16:13:49 +0530153# Copy standard platform config files
154PRODUCT_COPY_FILES += \
Amit Pundir276a0552019-11-23 22:27:15 +0530155 $(LOCAL_PATH)/ueventd.common.rc:$(TARGET_COPY_OUT_VENDOR)/ueventd.rc \
Amit Pundirc738b812019-06-19 16:13:49 +0530156 frameworks/native/data/etc/android.software.cts.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.cts.xml \
157 frameworks/native/data/etc/android.software.app_widgets.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.app_widgets.xml \
158 frameworks/native/data/etc/android.software.backup.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.backup.xml \
159 frameworks/native/data/etc/android.software.voice_recognizers.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.voice_recognizers.xml \
160 frameworks/native/data/etc/android.hardware.ethernet.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.ethernet.xml \
161 frameworks/native/data/etc/android.hardware.usb.accessory.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.accessory.xml \
162 frameworks/native/data/etc/android.hardware.usb.host.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.hardware.usb.host.xml \
163 frameworks/native/data/etc/android.software.device_admin.xml:$(TARGET_COPY_OUT_VENDOR)/etc/permissions/android.software.device_admin.xml
164
165# Copy firmware files
166$(call inherit-product-if-exists, $(LOCAL_PATH)/firmware/device.mk)
Dan Willemsen0e076d32020-01-27 18:59:03 -0800167
168PRODUCT_SOONG_NAMESPACES += external/mesa3d