diff options
author | Jiyong Park <jiyong@google.com> | 2020-04-13 12:55:24 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2020-04-13 13:00:47 +0900 |
commit | db589dded495c6c5f3f9890fa7b0e4ce3b1916fe (patch) | |
tree | 03c32a8cf202628f55f2b02cea4b40521b056fd3 /Android.bp | |
parent | ec38d551e392fc1825bbaab527890095aebf2f66 (diff) |
Mark some aidl_interface modules as unstable
With b/152655547, all aidl_interface modules are considered as stable
unless it is explicitly with "unstable: true". This change marks the
aidl_interface that are not used across updatable module bounraries
as unstable, so that the build system does not run the API
dumping/checking on them.
Bug: 152655547
Test: m
Change-Id: I1257c66de6dd42b2d32d47ed74cb2878f79d14fb
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 03a6af5997bb..e5e4bb68bff6 100644 --- a/Android.bp +++ b/Android.bp @@ -942,6 +942,7 @@ filegroup { aidl_interface { name: "libincremental_aidl", + unstable: true, srcs: [ ":incremental_aidl", ], @@ -960,6 +961,7 @@ aidl_interface { aidl_interface { name: "libdataloader_aidl", + unstable: true, srcs: [ ":dataloader_aidl", ], @@ -981,6 +983,7 @@ aidl_interface { aidl_interface { name: "libincremental_manager_aidl", + unstable: true, srcs: [ ":incremental_manager_aidl", ], |