diff options
author | 2024-02-07 19:52:19 +0000 | |
---|---|---|
committer | 2024-02-07 22:18:01 +0000 | |
commit | 31cf274769ade4f5d0e823f267c84df6c48e00df (patch) | |
tree | ae4def1343e59d22e68460b6cb244252a74a2d53 /api/Android.bp | |
parent | a73a8b3a9e4d9112db4790e3c760fa56e489f229 (diff) |
Add merged txt filegroups that depend on the exportable non-updatable txt files
Currently, ther merged txt filegroups are dist'ed as api/*-current.txt
and api/*-removed.txt files during droid dist build.
This change adds additional merged txt filegroup modules
that depend on the non-updatable exportable txt files instead of
the checked in non-updatable txt files (under frameworks/base/core).
These added modules will be dist'ed in droid build, instead of the
currently existing merged txt filegroups.
Test: m nothing && inspect ninja output
Bug: 324254328
Change-Id: Ib0b47ba032a2917d0f2df6ad585d2102d6940c50
Diffstat (limited to 'api/Android.bp')
-rw-r--r-- | api/Android.bp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/api/Android.bp b/api/Android.bp index 113424f7817d..735d85a06388 100644 --- a/api/Android.bp +++ b/api/Android.bp @@ -374,7 +374,10 @@ stubs_defaults { previous_api: ":android.api.public.latest", merge_annotations_dirs: ["metalava-manual"], defaults_visibility: ["//frameworks/base/api"], - visibility: ["//frameworks/base/api"], + visibility: [ + "//frameworks/base/api", + "//frameworks/base/core/api", + ], } // We resolve dependencies on APIs in modules by depending on a prebuilt of the whole |