diff options
author | Cody Kesting <ckesting@google.com> | 2020-01-05 15:23:15 -0800 |
---|---|---|
committer | Cody Kesting <ckesting@google.com> | 2020-02-05 11:49:18 -0800 |
commit | 33f2e3bc19a9d33f244939f8d04dc006b83aed1e (patch) | |
tree | 8b23dd31ce81b912caf5a899f5d300f03256dbb9 /common/networkstackclient/Android.bp | |
parent | fa7827266ae243cd2c96d1bad5b9a5b1ddec7403 (diff) |
Define callback for network tested with extras.
A new callback function is defined in INetworkMonitorCallbacks for
alerting ConnectivityService of a network test result along with a
PersistableBundle of extras.
Bug: 143187964
Test: compiles
Test: atest NetworkStackTests
Change-Id: Id07eda28f970e5423b323072d0639e77c8e6bd2e
Merged-In: Id07eda28f970e5423b323072d0639e77c8e6bd2e
Diffstat (limited to 'common/networkstackclient/Android.bp')
-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 c1ad011..31f3384 100644 --- a/common/networkstackclient/Android.bp +++ b/common/networkstackclient/Android.bp @@ -42,7 +42,10 @@ aidl_interface { aidl_interface { name: "networkstack-aidl-interfaces", local_include_dir: "src", - include_dirs: ["frameworks/base/core/java"], // For framework parcelables. + include_dirs: [ + "frameworks/base/core/java", // For framework parcelables. + "frameworks/native/aidl/binder/android/os", // For PersistableBundle.aidl + ], srcs: [ "src/android/net/DhcpResultsParcelable.aidl", "src/android/net/INetworkMonitor.aidl", |