Use Profiling flag at build time
This change puts base_system and default_art_config references to the profiling module behind the build flag. It also adds the flag to soong_config_vars so it can be referenced from the Profiling module and from platform_bootclasspath. Bug: 293957254 Bug: 325523640 Test: Built locally on trunk_food (where flag is disabled) and trunk_staging (where flag is enabled.) Ignore-AOSP-First: Must be submitted in topic with internal-only changes. Change-Id: I51cfa65ff607753cc8c588793ea381419ac99260
This commit is contained in:
@@ -80,7 +80,6 @@ PRODUCT_APEX_BOOT_JARS := \
|
||||
com.android.os.statsd:framework-statsd \
|
||||
com.android.permission:framework-permission \
|
||||
com.android.permission:framework-permission-s \
|
||||
com.android.profiling:framework-profiling \
|
||||
com.android.scheduling:framework-scheduling \
|
||||
com.android.sdkext:framework-sdkextensions \
|
||||
com.android.tethering:framework-connectivity \
|
||||
@@ -107,6 +106,13 @@ else
|
||||
$(call soong_config_set,bootclasspath,nfc_apex_bootclasspath_fragment,true)
|
||||
endif
|
||||
|
||||
# Check if build supports Profiling module.
|
||||
ifeq ($(RELEASE_PACKAGE_PROFILING_MODULE),true)
|
||||
PRODUCT_APEX_BOOT_JARS += \
|
||||
com.android.profiling:framework-profiling \
|
||||
|
||||
endif
|
||||
|
||||
# TODO(b/308174306): Adjust this after multiple prebuilts version is supported.
|
||||
# APEX boot jars that are not in prebuilt apexes.
|
||||
# Keep the list sorted by module names and then library names.
|
||||
@@ -157,12 +163,18 @@ PRODUCT_APEX_STANDALONE_SYSTEM_SERVER_JARS := \
|
||||
com.android.btservices:service-bluetooth \
|
||||
com.android.devicelock:service-devicelock \
|
||||
com.android.os.statsd:service-statsd \
|
||||
com.android.profiling:service-profiling \
|
||||
com.android.scheduling:service-scheduling \
|
||||
com.android.tethering:service-connectivity \
|
||||
com.android.uwb:service-uwb \
|
||||
com.android.wifi:service-wifi \
|
||||
|
||||
# Check if build supports Profiling module.
|
||||
ifeq ($(RELEASE_PACKAGE_PROFILING_MODULE),true)
|
||||
PRODUCT_APEX_STANDALONE_SYSTEM_SERVER_JARS += \
|
||||
com.android.profiling:service-profiling \
|
||||
|
||||
endif
|
||||
|
||||
# Overrides the (apex, jar) pairs above when determining the on-device location. The format is:
|
||||
# <old_apex>:<old_jar>:<new_apex>:<new_jar>
|
||||
PRODUCT_CONFIGURED_JAR_LOCATION_OVERRIDES := \
|
||||
|
Reference in New Issue
Block a user