diff options
| author | 2020-10-08 14:59:17 +0100 | |
|---|---|---|
| committer | 2020-10-08 15:33:40 +0100 | |
| commit | d74139eea75e4835e582ef22c54ad1efd95bbf89 (patch) | |
| tree | c20c5b3d6e4ac989edbc1a0d378abed0482203c0 | |
| parent | 25a0a2baa7d2ed618aa6aef7f32653b008019179 (diff) | |
Add appsearch and graphics to module lists
These two were missing from some of the lists of all modules,
as they either weren't standardized or not available in the branch
where the list was first added.
Bug: 169034951
Test: m
Change-Id: I16c67ef8a433e6720953a2046c09add13a8102ed
| -rw-r--r-- | StubLibraries.bp | 1 | ||||
| -rw-r--r-- | api/Android.bp | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/StubLibraries.bp b/StubLibraries.bp index d8b4e4757827..1430490dbdf9 100644 --- a/StubLibraries.bp +++ b/StubLibraries.bp @@ -363,6 +363,7 @@ java_library_static { srcs: [ ":api-stubs-docs-non-updatable" ], static_libs: [ "conscrypt.module.public.api.stubs", + "framework-appsearch.stubs", "framework-graphics.stubs", "framework-media.stubs", "framework-mediaprovider.stubs", diff --git a/api/Android.bp b/api/Android.bp index f0218b84a58a..3413f8ab0eed 100644 --- a/api/Android.bp +++ b/api/Android.bp @@ -48,6 +48,7 @@ genrule { name: "frameworks-base-api-current-merged.txt", srcs: [ ":conscrypt.module.public.api{.public.api.txt}", + ":framework-appsearch{.public.api.txt}", ":framework-graphics{.public.api.txt}", ":framework-media{.public.api.txt}", ":framework-mediaprovider{.public.api.txt}", @@ -67,6 +68,8 @@ genrule { name: "frameworks-base-api-removed-merged.txt", srcs: [ ":conscrypt.module.public.api{.public.removed-api.txt}", + ":framework-appsearch{.public.removed-api.txt}", + ":framework-graphics{.public.removed-api.txt}", ":framework-media{.public.removed-api.txt}", ":framework-mediaprovider{.public.removed-api.txt}", ":framework-permission{.public.removed-api.txt}", @@ -84,6 +87,7 @@ genrule { genrule { name: "frameworks-base-api-system-current-merged.txt", srcs: [ + ":framework-appsearch{.system.api.txt}", ":framework-graphics{.system.api.txt}", ":framework-media{.system.api.txt}", ":framework-mediaprovider{.system.api.txt}", @@ -102,6 +106,8 @@ genrule { genrule { name: "frameworks-base-api-system-removed-merged.txt", srcs: [ + ":framework-appsearch{.system.removed-api.txt}", + ":framework-graphics{.system.removed-api.txt}", ":framework-media{.system.removed-api.txt}", ":framework-mediaprovider{.system.removed-api.txt}", ":framework-permission{.system.removed-api.txt}", @@ -119,6 +125,7 @@ genrule { genrule { name: "frameworks-base-api-module-lib-current-merged.txt", srcs: [ + ":framework-appsearch{.module-lib.api.txt}", ":framework-graphics{.module-lib.api.txt}", ":framework-media{.module-lib.api.txt}", ":framework-mediaprovider{.module-lib.api.txt}", @@ -137,6 +144,8 @@ genrule { genrule { name: "frameworks-base-api-module-lib-removed-merged.txt", srcs: [ + ":framework-appsearch{.module-lib.removed-api.txt}", + ":framework-graphics{.module-lib.removed-api.txt}", ":framework-media{.module-lib.removed-api.txt}", ":framework-mediaprovider{.module-lib.removed-api.txt}", ":framework-permission{.module-lib.removed-api.txt}", |