diff options
author | 2024-10-10 11:00:36 -0700 | |
---|---|---|
committer | 2024-10-10 11:50:27 -0700 | |
commit | 6978879d29533cd9d39c836c4410bd5acbdd0353 (patch) | |
tree | 8b798a2c78cadd8904e8ce8027d6c5cbb2842587 /fsgen/filesystem_creator.go | |
parent | 527f3ad099cbe1cf9a25fa1bb901b16f0d2d2d9b (diff) |
Remove dependencies on 1-variant fallback
This is just a first pass, there are still more issues to tackle.
But after this we start getting errors about genrules which require
more work to resolve, so I'll handle them in a separate cl.
Bug: 372091092
Test: m nothing --no-skip-soong-tests
Change-Id: Ibf8f6bca699ff7c3232495ae7fa2666c967ba90b
Diffstat (limited to 'fsgen/filesystem_creator.go')
-rw-r--r-- | fsgen/filesystem_creator.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fsgen/filesystem_creator.go b/fsgen/filesystem_creator.go index d75a4a206..7db70e8b3 100644 --- a/fsgen/filesystem_creator.go +++ b/fsgen/filesystem_creator.go @@ -49,7 +49,7 @@ type filesystemCreator struct { func filesystemCreatorFactory() android.Module { module := &filesystemCreator{} - android.InitAndroidModule(module) + android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon) module.AddProperties(&module.properties) android.AddLoadHook(module, func(ctx android.LoadHookContext) { module.createInternalModules(ctx) |