summaryrefslogtreecommitdiff
path: root/api/api.go
diff options
context:
space:
mode:
author Xin Li <delphij@google.com> 2022-08-16 19:08:18 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2022-08-16 19:08:18 +0000
commit258ded61cdeafe20136f3450536675b6f518dca3 (patch)
tree568ded592a8dad9b4206c213a78ed48f0d952d22 /api/api.go
parent3d98002eab0fb0783eea44a20b0d01eb6c8730ec (diff)
parent98bb5a14bb2adf2d02822c0089b1f45f6b2e2950 (diff)
Merge "DO NOT MERGE - Merge Android 13"
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)