diff options
author | Jiyong Park <jiyong@google.com> | 2020-04-10 18:48:33 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2020-04-10 18:48:56 +0900 |
commit | e1140ae929059017e72828f93b3d916b3d3ca645 (patch) | |
tree | 602bf4e4d4508d83f8eebd3c5433a7372435a0cb /common/networkstackclient | |
parent | a8782392d4950627a141da6451c25eeb161fd26c (diff) |
ipmemorystore-aidl-interfaces is marked as available to platform
The lib is depended on by NetworkStackNext which is part of the platform.
With b/153073816, we will be checking the availability to the platform,
i.e. platform-available module depending on platform-unavailable module
causes a build error.
Prepare for the change by correctly marking that this interface lib is
available to the platform.
Bug: 153073816
Test: m
Change-Id: I946c9c874b381a8679071f87060d4e4739875f82
Diffstat (limited to 'common/networkstackclient')
-rw-r--r-- | common/networkstackclient/Android.bp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/networkstackclient/Android.bp b/common/networkstackclient/Android.bp index 49e9688..7e69d7a 100644 --- a/common/networkstackclient/Android.bp +++ b/common/networkstackclient/Android.bp @@ -25,7 +25,10 @@ aidl_interface { ], backend: { java: { - apex_available: ["com.android.wifi",], + apex_available: [ + "//apex_available:platform", + "com.android.wifi", + ], }, ndk: { enabled: false, |