diff options
| author | 2024-07-24 18:01:55 +0000 | |
|---|---|---|
| committer | 2024-07-31 21:38:15 +0000 | |
| commit | 2800675b3143b9a8cbf941118a3bad60e30f6878 (patch) | |
| tree | 73202428918f08d29c5816628866f714ed5460cb | |
| parent | 7eaa83707e2e7c345f83b81039997ac12afacfd5 (diff) | |
Rename ModuleId to ModuleCacheKey and call the same named method on moduleInfo
Bug: 335718784
Test: local manual tests
Change-Id: I364cd20281e52a1682f14a43c41bfe9993f04477
| -rw-r--r-- | android/module.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/module.go b/android/module.go index 5c2b1e1ea..f9fab96a9 100644 --- a/android/module.go +++ b/android/module.go @@ -1914,7 +1914,7 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) return } cacheKey = &blueprint.BuildActionCacheKey{ - Id: ctx.bp.ModuleId(), + Id: ctx.bp.ModuleCacheKey(), InputHash: hash, } } |