diff options
author | 2024-06-25 17:39:52 +0900 | |
---|---|---|
committer | 2024-06-25 17:39:52 +0900 | |
commit | b7e9f5f0359685a9609105bed182933b29cc10b3 (patch) | |
tree | f80fb451545bb83b81f4ff47733b86d67fcf6ab5 /android/module_context.go | |
parent | 9687618816983f26ba2e23fb708ea72b71f8ee98 (diff) |
Revert "Use hashed subdir for soong_config modules"
This reverts commit 81b00a8db73491a4cac326853853be743000a2ac.
Reason for revert:
* select() will supersede Soong config modules.
* A tiny change can make hundreds of gigabytes rebuilt.
* Hashed out/ directories are not cleaned.
* Even without this trace, AB build time is fast enough, thanks to
product-specific ninja files and so on.
Bug: 348548855
Test: m --no-skip-soong-tests
Change-Id: If9a97df1e161a9ef0fb1b801f9e129b71b11d1ac
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 e2677a4f6..dcb967fb4 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 @@ -377,10 +376,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() } |