diff options
| author | 2021-04-13 16:47:24 +0100 | |
|---|---|---|
| committer | 2021-11-11 11:21:08 +0000 | |
| commit | 5d6b13a1fc760194bb57f24a99a56346c4d80ddd (patch) | |
| tree | 7ef20b60b7340bfe836130bfda932ef21ca5b19d | |
| parent | 88aed3b81df6a10fcfbbb8ab1ca7d2b92da50a99 (diff) | |
Make mainline API defs visible to CTS.
These API definitions need to be used by CTS tests so that can assert
things about the mainline API surface differently to the non-updatable
API surface.
Bug: 153997280
Test: m
Change-Id: I275fed235c879c7519c131119ac9384d1aef75d9
| -rw-r--r-- | core/api/Android.bp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/core/api/Android.bp b/core/api/Android.bp index 170febb4f766..114a957674ae 100644 --- a/core/api/Android.bp +++ b/core/api/Android.bp @@ -51,11 +51,17 @@ filegroup { filegroup { name: "non-updatable-module-lib-current.txt", srcs: ["module-lib-current.txt"], - visibility: ["//frameworks/base/api"], + visibility: [ + "//frameworks/base/api", + "//cts/tests/signature/api", + ], } filegroup { name: "non-updatable-module-lib-removed.txt", srcs: ["module-lib-removed.txt"], - visibility: ["//frameworks/base/api"], + visibility: [ + "//frameworks/base/api", + "//cts/tests/signature/api", + ], } |