diff options
author | 2023-02-23 17:50:46 +0000 | |
---|---|---|
committer | 2023-02-23 17:50:46 +0000 | |
commit | 8e9ea8bb83bdab080c696d05eb1676b8dba0d35f (patch) | |
tree | 3fbc15ac1393f549b150d7887930492e2d947e42 /java/bootclasspath_fragment.go | |
parent | af8b9503575549d046470fde9b9e985278a17b87 (diff) |
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
Diffstat (limited to 'java/bootclasspath_fragment.go')
-rw-r--r-- | java/bootclasspath_fragment.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/bootclasspath_fragment.go b/java/bootclasspath_fragment.go index 101d3cad9..585f81887 100644 --- a/java/bootclasspath_fragment.go +++ b/java/bootclasspath_fragment.go @@ -1291,7 +1291,7 @@ func (module *PrebuiltBootclasspathFragmentModule) produceBootImageFiles(ctx and } return bootImageFiles } else { - if profile == nil { + if profile == nil && imageConfig.isProfileGuided() { ctx.ModuleErrorf("Unable to produce boot image files: neither boot image files nor profiles exists in the prebuilt apex") return bootImageOutputs{} } |