diff options
author | 2024-06-27 04:30:30 +0000 | |
---|---|---|
committer | 2024-06-27 04:30:30 +0000 | |
commit | f58d7efa297432b875e47d67f6665b9fd587bed8 (patch) | |
tree | e258a8ee00923c724a8541c79f1de9cffcaf37a2 /android/module_context.go | |
parent | 8eecb134e338c6560d862ae8888d6c25e7cee1a4 (diff) | |
parent | b7e9f5f0359685a9609105bed182933b29cc10b3 (diff) |
Merge "Revert "Use hashed subdir for soong_config modules"" into main
Diffstat (limited to 'android/module_context.go')
-rw-r--r-- | android/module_context.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/android/module_context.go b/android/module_context.go index 2e16a2478..253bebd3b 100644 --- a/android/module_context.go +++ b/android/module_context.go @@ -188,7 +188,6 @@ type ModuleContext interface { TargetRequiredModuleNames() []string ModuleSubDir() string - SoongConfigTraceHash() string Variable(pctx PackageContext, name, value string) Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule @@ -382,10 +381,6 @@ func (m *moduleContext) ModuleSubDir() string { return m.bp.ModuleSubDir() } -func (m *moduleContext) SoongConfigTraceHash() string { - return m.module.base().commonProperties.SoongConfigTraceHash -} - func (m *moduleContext) InstallInData() bool { return m.module.InstallInData() } |