summaryrefslogtreecommitdiff
path: root/api/api.go
diff options
context:
space:
mode:
author Xin Li <delphij@google.com> 2022-06-28 21:24:28 +0000
committer Xin Li <delphij@google.com> 2022-06-28 21:24:28 +0000
commit14543d1ec72202422373622ee818fe7549be5c7a (patch)
treeb0cc5937b07f9e3ed13ff032acf9728aafabf659 /api/api.go
parent8022fc288c9216521543284595c55e59e10f52c8 (diff)
parent9be0346b530266a7ceb6afa56643d42424fc70aa (diff)
Merge tm-dev-plus-aosp-without-vendor@8763363
Bug: 236760014 Merged-In: I5705ac7586cb73b7bc2bd60bb792d0a0a951ed74 Change-Id: I59a4fd917c95c8c9e258cd743cee2d950a46d9cd
Diffstat (limited to 'api/api.go')
-rw-r--r--api/api.go8
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)