Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0bf69233 authored by Abhishek Aggarwal's avatar Abhishek Aggarwal
Browse files

Merge remote-tracking branch 'origin/lineage-20.0' into v1-t

parents 3c7374a3 083e8a7f
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -121,6 +121,10 @@ endif

$(call soong_config_set,art_module,source_build,$(ART_MODULE_BUILD_FROM_SOURCE))

ifdef TARGET_BOARD_AUTO
  $(call add_soong_config_var_value, ANDROID, target_board_auto, $(TARGET_BOARD_AUTO))
endif

# Ensure that those mainline modules who have individually toggleable prebuilts
# are controlled by the MODULE_BUILD_FROM_SOURCE environment variable by
# default.
@@ -152,6 +156,10 @@ endif
SYSTEMUI_OPTIMIZE_JAVA ?= true
$(call add_soong_config_var,ANDROID,SYSTEMUI_OPTIMIZE_JAVA)

# Disable Compose in SystemUI by default.
SYSTEMUI_USE_COMPOSE ?= false
$(call add_soong_config_var,ANDROID,SYSTEMUI_USE_COMPOSE)

# Enable system_server optimizations by default unless explicitly set or if
# there may be dependent runtime jars.
# TODO(b/240588226): Remove the off-by-default exceptions after handling
+1 −1
Original line number Diff line number Diff line
@@ -18,4 +18,4 @@
# (like "CRB01").  It must be a single word, and is
# capitalized by convention.

BUILD_ID=TQ1A.230205.002
BUILD_ID=TQ2A.230305.008.C1
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ ifndef PLATFORM_SECURITY_PATCH
    #  It must be of the form "YYYY-MM-DD" on production devices.
    #  It must match one of the Android Security Patch Level strings of the Public Security Bulletins.
    #  If there is no $PLATFORM_SECURITY_PATCH set, keep it empty.
    PLATFORM_SECURITY_PATCH := 2023-02-05
    PLATFORM_SECURITY_PATCH := 2023-03-05
endif

include $(BUILD_SYSTEM)/version_util.mk
+4 −4
Original line number Diff line number Diff line
@@ -35,8 +35,8 @@ ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true)

  BOARD_EXT4_SHARE_DUP_BLOCKS := true

  # 4G + 8M
  BOARD_SUPER_PARTITION_SIZE := 4303355904
  # 8G + 8M
  BOARD_SUPER_PARTITION_SIZE := 8598323200
  BOARD_SUPER_PARTITION_GROUPS := emulator_dynamic_partitions

  ifeq ($(QEMU_USE_SYSTEM_EXT_PARTITIONS),true)
@@ -58,8 +58,8 @@ ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true)
        vendor
  endif

  # 4G
  BOARD_EMULATOR_DYNAMIC_PARTITIONS_SIZE := 4294967296
  # 8G
  BOARD_EMULATOR_DYNAMIC_PARTITIONS_SIZE := 8589934592

  # in build environment to speed up make -j
  ifeq ($(QEMU_DISABLE_AVB),true)
+24 −0
Original line number Diff line number Diff line
#
# Copyright (C) 2022 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

# /system_ext packages
PRODUCT_PACKAGES += \
    androidx.window.extensions \
    androidx.window.sidecar

# properties
PRODUCT_PRODUCT_PROPERTIES += \
    persist.wm.extensions.enabled=true
Loading