Export AIDL files as a filegroup for framework.jar

Put AIDL files into a filegroup so they can be imported as sources
for framework.jar.

Test: m checkbuild
Change-Id: I1a5335384e9291af1f26e7418f15fcfa082ee356
This commit is contained in:
Colin Cross 2017-11-25 08:46:56 -08:00
parent 4f07e909dc
commit c2a3a20c2c

View file

@ -61,7 +61,7 @@ cc_library_static {
"storaged_uid_monitor.cpp",
"uid_info.cpp",
"storaged.proto",
"binder/android/os/IStoraged.aidl",
":storaged_aidl",
"binder/android/os/storaged/IStoragedPrivate.aidl",
],
@ -100,3 +100,11 @@ cc_test {
static_libs: ["libstoraged"],
}
// AIDL interface between storaged and framework.jar
filegroup {
name: "storaged_aidl",
srcs: [
"binder/android/os/IStoraged.aidl",
],
}