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. Bug: 69917341 Test: m checkbuild Change-Id: I22e765ccf88832b1b192b42b2161898d9a6e5b2c
This commit is contained in:
parent
130a994f4f
commit
a838863d77
1 changed files with 10 additions and 3 deletions
13
Android.bp
13
Android.bp
|
@ -65,9 +65,7 @@ cc_library_static {
|
|||
defaults: ["vold_default_flags"],
|
||||
|
||||
srcs: [
|
||||
"binder/android/os/IVold.aidl",
|
||||
"binder/android/os/IVoldListener.aidl",
|
||||
"binder/android/os/IVoldTaskListener.aidl",
|
||||
":vold_aidl",
|
||||
],
|
||||
shared_libs: [
|
||||
"libbinder",
|
||||
|
@ -187,4 +185,13 @@ cc_binary {
|
|||
],
|
||||
}
|
||||
|
||||
filegroup {
|
||||
name: "vold_aidl",
|
||||
srcs: [
|
||||
"binder/android/os/IVold.aidl",
|
||||
"binder/android/os/IVoldListener.aidl",
|
||||
"binder/android/os/IVoldTaskListener.aidl",
|
||||
],
|
||||
}
|
||||
|
||||
subdirs = ["tests"]
|
||||
|
|
Loading…
Reference in a new issue