summaryrefslogtreecommitdiff
path: root/android/path_properties.go
diff options
context:
space:
mode:
author Usta <usta@google.com> 2022-01-05 23:42:33 -0500
committer Usta Shrestha <usta@google.com> 2022-01-08 03:09:52 +0000
commit851a3271ceec1f623e8a2283ebeea5f71ae833a2 (patch)
treea1fd8a43fbac7756b7de87ff556c399d21b535f9 /android/path_properties.go
parente508f6a50bc771f695554da326e1e768054570ff (diff)
Use Module.GetProperties() instead of ModuleBase.generalProperties
ModuleBase.generalProperties served the pupose of being a subset of ModuleBase.customizableProperties. But now with the removal of the latter, the former is simply a redirection to Module.GetProperties() Bug: 206961391 Test: m nothing and diff the ninja files Change-Id: I6dd8b7ba74eb5e7ffb61029b0f9129eec2ccfdaf
Diffstat (limited to 'android/path_properties.go')
-rw-r--r--android/path_properties.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/path_properties.go b/android/path_properties.go
index 397688064..fdc4d918f 100644
--- a/android/path_properties.go
+++ b/android/path_properties.go
@@ -33,7 +33,7 @@ func registerPathDepsMutator(ctx RegisterMutatorsContext) {
// The pathDepsMutator automatically adds dependencies on any module that is listed with the
// ":module" module reference syntax in a property that is tagged with `android:"path"`.
func pathDepsMutator(ctx BottomUpMutatorContext) {
- props := ctx.Module().base().generalProperties
+ props := ctx.Module().base().GetProperties()
addPathDepsForProps(ctx, props)
}