From 8e9ea8bb83bdab080c696d05eb1676b8dba0d35f Mon Sep 17 00:00:00 2001 From: Jiakai Zhang Date: Thu, 23 Feb 2023 17:50:46 +0000 Subject: Add a new option `compilerFilter` to `bootImageConfig`. After this change, the compiler filter can be specified by the option, and profiles will not be used if the compiler filter is not a profile-guided one. This change also allows preloadedClassesFile to be empty. Bug: 269230245 Test: m Change-Id: I65e6b7209d2f0510bcc784a62623ab402b7f96bb --- java/dexpreopt_config.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'java/dexpreopt_config.go') diff --git a/java/dexpreopt_config.go b/java/dexpreopt_config.go index 4d0bd09c6..2975130f3 100644 --- a/java/dexpreopt_config.go +++ b/java/dexpreopt_config.go @@ -63,6 +63,7 @@ func genBootImageConfigRaw(ctx android.PathContext) map[string]*bootImageConfig profileInstallPathInApex: "etc/boot-image.prof", modules: artModules, preloadedClassesFile: "art/build/boot/preloaded-classes", + compilerFilter: "speed-profile", } // Framework config for the boot image extension. @@ -76,6 +77,7 @@ func genBootImageConfigRaw(ctx android.PathContext) map[string]*bootImageConfig installDirOnDevice: frameworkSubdir, modules: frameworkModules, preloadedClassesFile: "frameworks/base/config/preloaded-classes", + compilerFilter: "speed-profile", } return map[string]*bootImageConfig{ -- cgit v1.2.3-59-g8ed1b