Merge "Remove out/host/common/obj/PACKAGING during installclean" am: 79bb3d4784

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1456350

Change-Id: Ib034c9f5ff97da40cc64582080811490783c3b92
This commit is contained in:
Treehugger Robot 2020-10-12 21:29:34 +00:00 committed by Automerger Merge Worker
commit 15edee4142
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,10 @@ func installClean(ctx Context, config Config, what int) {
return filepath.Join(hostOutPath, path)
}
hostCommonOut := func(path string) string {
return filepath.Join(config.hostOutRoot(), "common", path)
}
productOutPath := config.ProductOut()
productOut := func(path string) string {
return filepath.Join(productOutPath, path)
@ -101,6 +105,7 @@ func installClean(ctx Context, config Config, what int) {
hostOut("vts"),
hostOut("vts10"),
hostOut("vts-core"),
hostCommonOut("obj/PACKAGING"),
productOut("*.img"),
productOut("*.zip"),
productOut("android-info.txt"),