diff options
author | 2025-01-30 22:23:12 -0800 | |
---|---|---|
committer | 2025-01-30 22:23:12 -0800 | |
commit | a8cacac72a743b6c2d8a4480b3ae6619d22fb2d0 (patch) | |
tree | 80a404b78aacfcd340e37991ab92354b31cb156d /filesystem/android_device.go | |
parent | 8057bac878c4f15923fab22db11d60bd82596145 (diff) | |
parent | 19fbb07dabf3a0a0836e6c4b36fd5584a2d1957b (diff) |
Merge "Fix staging dir creation for adevice" into main
Diffstat (limited to 'filesystem/android_device.go')
-rw-r--r-- | filesystem/android_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filesystem/android_device.go b/filesystem/android_device.go index 3e2f61f1b..6c048287b 100644 --- a/filesystem/android_device.go +++ b/filesystem/android_device.go @@ -210,7 +210,7 @@ func (a *androidDevice) GenerateAndroidBuildActions(ctx android.ModuleContext) { // https://cs.android.com/android/platform/superproject/main/+/main:build/make/core/main.mk;l=1396;drc=6595459cdd8164a6008335f6372c9f97b9094060 ctx.Phony("droidcore-unbundled", allImagesStamp) - validations = append(validations, a.copyFilesToProductOutForSoongOnly(ctx)) + deps = append(deps, a.copyFilesToProductOutForSoongOnly(ctx)) } ctx.Build(pctx, android.BuildParams{ |