diff options
author | 2022-11-23 23:06:05 +0000 | |
---|---|---|
committer | 2022-12-12 17:33:06 +0000 | |
commit | d796f6f6dcb1c34bb7ed5c699588eb3938a3ed37 (patch) | |
tree | 37b5efac5f630c265f9ea8b458f540f4ff5ab8ee /java/systemserver_classpath_fragment.go | |
parent | 5e71e68a82bf00b8d1ddb3c6d50a0aa38458530c (diff) |
Stop module types being SdkAware
Removes all usages of SdkBase and InitSdkAwareModule.
Bug: 260237150
Test: m nothing
Change-Id: I07db8afc805eadbeb5b23f2e1d2f51567eecfab0
Diffstat (limited to 'java/systemserver_classpath_fragment.go')
-rw-r--r-- | java/systemserver_classpath_fragment.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/java/systemserver_classpath_fragment.go b/java/systemserver_classpath_fragment.go index f6cb79585..17d301b70 100644 --- a/java/systemserver_classpath_fragment.go +++ b/java/systemserver_classpath_fragment.go @@ -83,7 +83,6 @@ func (p *platformSystemServerClasspathModule) standaloneConfiguredJars(ctx andro type SystemServerClasspathModule struct { android.ModuleBase android.ApexModuleBase - android.SdkBase ClasspathFragmentBase @@ -113,7 +112,6 @@ func systemServerClasspathFactory() android.Module { m := &SystemServerClasspathModule{} m.AddProperties(&m.properties) android.InitApexModule(m) - android.InitSdkAwareModule(m) initClasspathFragment(m, SYSTEMSERVERCLASSPATH) android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon) return m @@ -331,7 +329,6 @@ func prebuiltSystemServerClasspathModuleFactory() android.Module { // array. android.InitPrebuiltModule(m, &[]string{"placeholder"}) android.InitApexModule(m) - android.InitSdkAwareModule(m) android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon) return m } |