summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jiyong Park <jiyong@google.com> 2020-04-13 12:55:44 +0900
committer Jiyong Park <jiyong@google.com> 2020-04-20 07:44:55 +0000
commit701fa1a9b68b587daf163d3e0e5c96a8a1e2c3fb (patch)
tree67449a5294a080652b310d3e6a3b5bc065bcfe17
parentd656fe27e13f00ce7a6c395f03d0e60e842dac5a (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. Exempt-From-Owner-Approval: cherry-pick from internal Bug: 152655547 Test: m Merged-In: Ib99b57fde95887d1725ef7a4bdd3daf979aa059b (cherry picked from commit 03f7b892ebc5980f5a8225d8cb44396087719554) Change-Id: Ib99b57fde95887d1725ef7a4bdd3daf979aa059b
-rw-r--r--libs/binder/Android.bp1
-rw-r--r--libs/binder/ndk/test/Android.bp2
-rw-r--r--libs/binder/tests/Android.bp1
-rw-r--r--libs/binderthreadstate/Android.bp1
4 files changed, 5 insertions, 0 deletions
diff --git a/libs/binder/Android.bp b/libs/binder/Android.bp
index bc541f4d31..c2991cd5bc 100644
--- a/libs/binder/Android.bp
+++ b/libs/binder/Android.bp
@@ -168,6 +168,7 @@ filegroup {
aidl_interface {
name: "libbinder_aidl_test_stub",
+ unstable: true,
local_include_dir: "aidl",
srcs: [":libbinder_aidl"],
vendor_available: true,
diff --git a/libs/binder/ndk/test/Android.bp b/libs/binder/ndk/test/Android.bp
index cb4b20ff9d..5f5265c90e 100644
--- a/libs/binder/ndk/test/Android.bp
+++ b/libs/binder/ndk/test/Android.bp
@@ -92,6 +92,7 @@ cc_test {
aidl_interface {
name: "IBinderVendorDoubleLoadTest",
+ unstable: true,
vendor: true,
srcs: [
"IBinderVendorDoubleLoadTest.aidl",
@@ -100,6 +101,7 @@ aidl_interface {
aidl_interface {
name: "IBinderNdkUnitTest",
+ unstable: true,
srcs: [
"IBinderNdkUnitTest.aidl",
"IEmpty.aidl",
diff --git a/libs/binder/tests/Android.bp b/libs/binder/tests/Android.bp
index c7b75515cd..69fdd7c5d8 100644
--- a/libs/binder/tests/Android.bp
+++ b/libs/binder/tests/Android.bp
@@ -137,6 +137,7 @@ cc_test {
aidl_interface {
name: "binderStabilityTestIface",
+ unstable: true,
srcs: [
"IBinderStabilityTest.aidl",
],
diff --git a/libs/binderthreadstate/Android.bp b/libs/binderthreadstate/Android.bp
index c1861104d3..5eb509c4a0 100644
--- a/libs/binderthreadstate/Android.bp
+++ b/libs/binderthreadstate/Android.bp
@@ -39,6 +39,7 @@ hidl_package_root {
aidl_interface {
name: "binderthreadstateutilstest.aidl",
+ unstable: true,
srcs: ["IAidlStuff.aidl"],
}