mirror of
https://github.com/pjgowtham/android_device_realme_ferrarri.git
synced 2025-07-18 10:12:51 +00:00
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2021 The LineageOS Project
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#
|
|
# This file sets variables that control the way modules are built
|
|
# thorughout the system. It should not be used to conditionally
|
|
# disable makefiles (the proper mechanism to control what gets
|
|
# included in a build is to use PRODUCT_PACKAGES in a product
|
|
# definition file).
|
|
#
|
|
|
|
# Overlays
|
|
DEVICE_PACKAGE_OVERLAYS += \
|
|
$(LOCAL_PATH)/overlay-lineage
|
|
|
|
PRODUCT_PACKAGES += \
|
|
OPlusFrameworksResTarget \
|
|
OPlusSettingsProviderResTarget \
|
|
OPlusSystemUIResTarget
|
|
|
|
# Device uses high-density artwork where available
|
|
PRODUCT_AAPT_CONFIG := normal
|
|
PRODUCT_AAPT_PREF_CONFIG := xxxhdpi
|
|
|
|
# Boot animation
|
|
TARGET_SCREEN_HEIGHT := 3168
|
|
TARGET_SCREEN_WIDTH := 1440
|
|
|
|
# Audio
|
|
PRODUCT_COPY_FILES += \
|
|
$(LOCAL_PATH)/audio/mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/mixer_paths.xml
|
|
|
|
# Device init scripts
|
|
PRODUCT_PACKAGES += \
|
|
init.recovery.target.rc
|
|
|
|
# Soong namespaces
|
|
PRODUCT_SOONG_NAMESPACES += \
|
|
$(LOCAL_PATH)
|
|
|
|
PRODUCT_SHIPPING_API_LEVEL := 30
|
|
|
|
# Inherit from oneplus sm8350-common
|
|
$(call inherit-product, device/oneplus/sm8350-common/common.mk)
|
|
|
|
# Inherit from vendor blobs
|
|
$(call inherit-product, vendor/oneplus/lemonadep/lemonadep-vendor.mk)
|