From 65f6e3c0703926bf11f7e2b6badec22a79456720 Mon Sep 17 00:00:00 2001 From: Alexander Koskovich Date: Wed, 18 May 2022 09:03:29 -0700 Subject: [PATCH] lemonadep: Alphabetically sort makefiles Change-Id: Ie31e1c256e096f578b27f04a0087af46ff0c4b39 --- BoardConfig.mk | 4 ++-- device.mk | 36 ++++++++++++++++++------------------ 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/BoardConfig.mk b/BoardConfig.mk index 6d6f096..fe5cb9b 100644 --- a/BoardConfig.mk +++ b/BoardConfig.mk @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0 # -# Inherit from oneplus sm8350-common +# Include the common OEM chipset BoardConfig. include device/oneplus/sm8350-common/BoardConfigCommon.mk DEVICE_PATH := device/oneplus/lemonadep @@ -19,5 +19,5 @@ TARGET_VENDOR_PROP += $(DEVICE_PATH)/vendor.prop TARGET_RECOVERY_DENSITY := xxhdpi TARGET_RECOVERY_UI_MARGIN_HEIGHT := 126 -# inherit from the proprietary version +# Include the proprietary files BoardConfig. include vendor/oneplus/lemonadep/BoardConfigVendor.mk diff --git a/device.mk b/device.mk index 64d6f0d..2a53a9d 100644 --- a/device.mk +++ b/device.mk @@ -4,34 +4,34 @@ # SPDX-License-Identifier: Apache-2.0 # +# AAPT +PRODUCT_AAPT_CONFIG := normal +PRODUCT_AAPT_PREF_CONFIG := xxxhdpi + +# Audio +PRODUCT_COPY_FILES += \ + $(LOCAL_PATH)/audio/mixer_paths.xml:$(TARGET_COPY_OUT_VENDOR)/etc/audio/sku_lahaina/mixer_paths.xml + +# Boot animation +TARGET_SCREEN_HEIGHT := 3168 +TARGET_SCREEN_WIDTH := 1440 + +# Device init scripts +PRODUCT_PACKAGES += \ + init.recovery.target.rc + # Overlays 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) -# Inherit from oneplus sm8350-common +# Inherit from the common OEM chipset makefile. $(call inherit-product, device/oneplus/sm8350-common/common.mk) -# Inherit from vendor blobs +# Inherit from the proprietary files makefile. $(call inherit-product, vendor/oneplus/lemonadep/lemonadep-vendor.mk)