diff options
author | 2015-12-21 12:11:00 -0800 | |
---|---|---|
committer | 2016-01-06 11:03:18 -0800 | |
commit | 07b0cd6d4b373c626a750df95e63539697b7f5f0 (patch) | |
tree | e7d6bb3a324f4614eec48b79644d49789d4cab91 /aidl | |
parent | 43e4260831cc3d0d96c05fe18a8cad3018b5795f (diff) |
Add PersistableBundle.aidl into binder includes
Add the PersistableBundle.aidl into the new /aidl/binder/
subdirectory (along with the necessary 'android' and 'os'
subdirectories) so that the aidl file will live alongside
its native implementation in libbinder. This change will
allow native-only Android checkouts (e.g. Brillo) to use
PersistableBundle.
The /aidl/ subdirectory should henceforth contain any
aidl files that live with native code.
BUG: 26292234
Change-Id: I07b49dad8afd679f33e41fa9044dffc02ec25e3e
Diffstat (limited to 'aidl')
-rw-r--r-- | aidl/binder/android/os/PersistableBundle.aidl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/aidl/binder/android/os/PersistableBundle.aidl b/aidl/binder/android/os/PersistableBundle.aidl new file mode 100644 index 0000000000..94e8607630 --- /dev/null +++ b/aidl/binder/android/os/PersistableBundle.aidl @@ -0,0 +1,20 @@ +/* +** +** Copyright 2014, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +** http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + +package android.os; + +parcelable PersistableBundle cpp_header "binder/PersistableBundle.h"; |