diff options
| author | 2022-06-29 21:16:59 +0000 | |
|---|---|---|
| committer | 2022-06-29 21:16:59 +0000 | |
| commit | 0f466f51f1abb06d3ee621ed1f64723a44715af0 (patch) | |
| tree | 5b04b4f8d30f6f1d7978730460a61d0eb06b6208 /api/api.go | |
| parent | 4a6e08d4b5bc357037808f74550177ef21184056 (diff) | |
| parent | 14543d1ec72202422373622ee818fe7549be5c7a (diff) | |
Merge "Merge tm-dev-plus-aosp-without-vendor@8763363" into stage-aosp-master
Diffstat (limited to 'api/api.go')
| -rw-r--r-- | api/api.go | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/api/api.go b/api/api.go index bf6b0859ea7f..f15804156bdf 100644 --- a/api/api.go +++ b/api/api.go @@ -206,17 +206,9 @@ func createMergedSystemStubs(ctx android.LoadHookContext, modules []string) { func createMergedFrameworkImpl(ctx android.LoadHookContext, modules []string) { // This module is for the "framework-all" module, which should not include the core libraries. modules = removeAll(modules, core_libraries_modules) - // TODO(b/214988855): remove the line below when framework-bluetooth has an impl jar. - modules = remove(modules, "framework-bluetooth") props := libraryProps{} props.Name = proptools.StringPtr("all-framework-module-impl") props.Static_libs = transformArray(modules, "", ".impl") - // Media module's impl jar is called "updatable-media" - for i, v := range props.Static_libs { - if v == "framework-media.impl" { - props.Static_libs[i] = "updatable-media" - } - } props.Sdk_version = proptools.StringPtr("module_current") props.Visibility = []string{"//frameworks/base"} ctx.CreateModule(java.LibraryFactory, &props) |