diff options
author | 2021-09-16 16:53:28 +0100 | |
---|---|---|
committer | 2021-09-20 23:47:24 +0100 | |
commit | 531d8fdc2a67b9eef12ff6b27952769b910052bf (patch) | |
tree | c9ed08bfb3ce6e61152008da272a9d4ceac6acf8 /java/hiddenapi_modular.go | |
parent | 80bb3164b925661428cea5dd58db000cda85f733 (diff) |
Remove workaround for modules with missing BCP fragments, as they are
present now.
#codehealth
Test: presubmits
Bug: 192868581
Change-Id: I8370525849ea589af0bf4f8d3fd081f3004516a1
Diffstat (limited to 'java/hiddenapi_modular.go')
-rw-r--r-- | java/hiddenapi_modular.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/java/hiddenapi_modular.go b/java/hiddenapi_modular.go index 51cd50169..1c6fbac72 100644 --- a/java/hiddenapi_modular.go +++ b/java/hiddenapi_modular.go @@ -1194,13 +1194,6 @@ func retrieveClassesJarsFromModule(module android.Module) android.Paths { // deferReportingMissingBootDexJar returns true if a missing boot dex jar should not be reported by // Soong but should instead only be reported in ninja if the file is actually built. func deferReportingMissingBootDexJar(ctx android.ModuleContext, module android.Module) bool { - // TODO(b/179354495): Remove this workaround when it is unnecessary. - // Prebuilt modules like framework-wifi do not yet provide dex implementation jars. So, - // create a fake one that will cause a build error only if it is used. - if ctx.Config().AlwaysUsePrebuiltSdks() { - return true - } - // Any missing dependency should be allowed. if ctx.Config().AllowMissingDependencies() { return true |