diff --git a/core/dex_preopt_libart.mk b/core/dex_preopt_libart.mk index 79e72c15f..20d43dcfa 100644 --- a/core/dex_preopt_libart.mk +++ b/core/dex_preopt_libart.mk @@ -93,8 +93,11 @@ LIBART_TARGET_BOOT_ART_EXTRA_FILES += boot.oat boot.vdex # If we use a boot image profile. my_use_profile_for_boot_image := $(PRODUCT_USE_PROFILE_FOR_BOOT_IMAGE) ifeq (,$(my_use_profile_for_boot_image)) -# If not set, use the default. -my_use_profile_for_boot_image := false +# If not set, set the default to true if we are not a PDK build. PDK builds +# can't build the profile since they don't have frameworks/base. +ifneq (true,$(TARGET_BUILD_PDK)) +my_use_profile_for_boot_image := true +endif endif ifeq (true,$(my_use_profile_for_boot_image))