Remove soong.config, FileConfigurableOptions, MegaDevice config.

No current use cases for soong.config and user-editable local
configuration options for Soong, so let's remove it to reduce the API
surface.

The MegaDevice configuration is used for building every module, for
every cpu variant, for every architecture, but it apparently isn't
used for a while now.

Test: m nothing
Test: TH
Fixes: 174188200
Change-Id: I2550e70ff6f9c8b57e9a7cc517d6a119a032a27a
This commit is contained in:
Jingwen Chen
2020-11-24 22:59:26 -05:00
parent 65d5b7f0e9
commit c4d91bceba
5 changed files with 4 additions and 108 deletions

View File

@@ -2327,10 +2327,6 @@ func (m *moduleContext) skipInstall(fullInstallPath InstallPath) bool {
if m.Config().KatiEnabled() && !m.InstallBypassMake() {
return true
}
if m.Config().SkipMegaDeviceInstall(fullInstallPath.String()) {
return true
}
}
return false