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

Commit 1cf32e1b authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Make change and version bump to BP3A.250517.001

Snap for 13511273 from b35e922b to 25Q3-release

Change-Id: Iecd765143c0acb78cdc90da8fe41f12691cfe42a
parents 1b421828 b35e922b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -263,6 +263,10 @@ $(call soong_config_set,bootclasspath,release_package_profiling_module,$(RELEASE
# Move VCN from platform to the Tethering module; used by both platform and module
$(call soong_config_set,ANDROID,is_vcn_in_mainline,$(RELEASE_MOVE_VCN_TO_MAINLINE))

# Add telephony build flag to soong
$(call soong_config_set,ANDROID,release_telephony_module,$(RELEASE_TELEPHONY_MODULE))
$(call soong_config_set,bootclasspath,release_telephony_module,$(RELEASE_TELEPHONY_MODULE))

# Add perf-setup build flag to soong
# Note: BOARD_PERFSETUP_SCRIPT location must be under platform_testing/scripts/perf-setup/.
ifdef BOARD_PERFSETUP_SCRIPT
+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=BP3A.250516.002
BUILD_ID=BP3A.250517.001
+5 −0
Original line number Diff line number Diff line
@@ -387,6 +387,11 @@ ifneq ($(RELEASE_MOVE_VCN_TO_MAINLINE),true)
        framework-connectivity-b
endif

ifeq ($(RELEASE_TELEPHONY_MODULE),true)
    PRODUCT_PACKAGES += \
       com.android.telephony2
endif

ifneq (,$(RELEASE_RANGING_STACK))
    PRODUCT_PACKAGES += \
        com.android.ranging
+6 −0
Original line number Diff line number Diff line
@@ -147,6 +147,12 @@ else

endif

ifeq ($(RELEASE_TELEPHONY_MODULE),true)
    PRODUCT_APEX_BOOT_JARS += \
        com.android.telephony2:framework-telephony \

endif

# List of system_server classpath jars delivered via apex.
# Keep the list sorted by module names and then library names.
# Note: For modules available in Q, DO NOT add new entries here.
+5 −0
Original line number Diff line number Diff line
@@ -906,6 +906,11 @@ system_image_defaults {
                    "com.android.uprobestats", // base_system (RELEASE_UPROBESTATS_MODULE)
                ],
                default: [],
            }) + select(release_flag("RELEASE_TELEPHONY_MODULE"), {
                true: [
                    "com.android.telephony2", // base_system (RELEASE_TELEPHONY_MODULE)
                ],
                default: [],
            }),
        },
        prefer32: {
Loading