Fixed a wrong AIDL import path

AIDL import path should point to a root directory where relative path to
an AIDL file encodes the fully qualified name of the type in the file.

Since libvold_binder imports types like
android.os.incremental.IncrementalFileSystemControlParcel which are
under frameworks/base/core/java, the import path should set to the path,
not to the sub directory that directly has the AIDL files.

Bug: 147918827
Test: m
Change-Id: Ic4941578813eced5a7eb59a0656c10b76e902515
gugelfrei
Jiyong Park 5 years ago
parent 6492a6abf6
commit 50c3ab6ac1

@ -81,7 +81,7 @@ cc_library_static {
local_include_dirs: ["binder"],
include_dirs: [
"frameworks/native/aidl/binder",
"frameworks/base/core/java/android/os/incremental",
"frameworks/base/core/java",
],
export_aidl_headers: true,
},

Loading…
Cancel
Save