diff options
| author | 2020-05-07 12:06:00 +0100 | |
|---|---|---|
| committer | 2020-05-07 12:15:37 +0100 | |
| commit | e89d37d6d88de0cd3ca2fdbcd5648bb0f4c7310f (patch) | |
| tree | 38a1584928a2de267687a45b5a67e1853d603a83 | |
| parent | 8a028947c3ab7c1a822a2812d4498f9c596be392 (diff) | |
Move conscrypt from the set of non-updatable APIs
This has no practical effect in this CL, but in a future CL we are
changing the stub jars to be assembled by merging other jar files, at
which point we want to conscrypt to not be in the non-updatable jar.
Bug: 144149403
Test: m
Change-Id: Iacfcc3a789cb42a73cc4b4c89a215db0ea09800f
| -rw-r--r-- | StubLibraries.bp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/StubLibraries.bp b/StubLibraries.bp index 91efb05b50f4..50524998d416 100644 --- a/StubLibraries.bp +++ b/StubLibraries.bp @@ -48,7 +48,6 @@ stubs_defaults { ":opt-telephony-srcs", ":opt-net-voip-srcs", ":art-module-public-api-stubs-source", - ":conscrypt.module.public.api.stubs.source", ":android_icu4j_public_api_files", ], // TODO(b/147699819): remove below aidl includes. @@ -69,7 +68,10 @@ stubs_defaults { stubs_defaults { name: "metalava-full-api-stubs-default", defaults: ["metalava-base-api-stubs-default"], - srcs: [":framework-updatable-sources"], + srcs: [ + ":conscrypt.module.public.api.stubs.source", + ":framework-updatable-sources", + ], sdk_version: "core_platform", } |