diff options
author | Anton Hansson <hansson@google.com> | 2020-04-08 16:37:10 +0100 |
---|---|---|
committer | Anton Hansson <hansson@google.com> | 2020-04-08 16:37:10 +0100 |
commit | eb34cbee12039167dadcc6ae02ba1aad7b9a08b7 (patch) | |
tree | 2e4694135c1d79a61dc7913ebc3444ace902b625 /apex/Android.bp | |
parent | 9c50a64e914507de422679c98878592d0376693c (diff) |
Use module_current to build module stubs
module_current is always built from sources, whereas the
other SDK jars are being transitioned to be composed of
a set of stubs. This avoids the dependency cycle of module
stubs depending on themselves.
Bug: 144149403
Test: m
Change-Id: I31c6d0fa958aa502131352716a9f950828b7829c
Diffstat (limited to 'apex/Android.bp')
-rw-r--r-- | apex/Android.bp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index 5f418d47f090..67cd0d7fcd1e 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -67,7 +67,7 @@ stubs_defaults { name: "framework-module-stubs-defaults-publicapi", args: mainline_framework_stubs_args, installable: false, - sdk_version: "current", + sdk_version: "module_current", filter_packages: framework_packages_to_document, check_api: { current: { @@ -86,7 +86,7 @@ stubs_defaults { args: mainline_framework_stubs_args + priv_apps, libs: ["framework-annotations-lib"], installable: false, - sdk_version: "system_current", + sdk_version: "module_current", filter_packages: framework_packages_to_document, check_api: { current: { |