fb7de5c99b
This now defaults to the current path making references to it relocatable. Bug: 111366989 Test: make hidl interfaces under this package root (this exercises the new path) Change-Id: I0d9dd1ebb00fcf514e374682497b8d26d0bfa353
41 lines
877 B
Text
41 lines
877 B
Text
hidl_package_root {
|
|
name: "android.hardware",
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "hidl_defaults",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
}
|
|
|
|
// VTS tests must link to HAL definition libraries statically.
|
|
cc_defaults {
|
|
name: "VtsHalTargetTestDefaults",
|
|
defaults: ["hidl_defaults"],
|
|
|
|
// Lists all dependencies that can *not* be expected on the device.
|
|
static_libs: [
|
|
"VtsHalHidlTargetTestBase",
|
|
"libhidl-gen-utils",
|
|
],
|
|
group_static_libs: true,
|
|
|
|
// Lists all system dependencies that can be expected on the device.
|
|
shared_libs: [
|
|
"libbase",
|
|
// All the following are dependencies of any HAL definition library.
|
|
"libcutils",
|
|
"liblog",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libutils",
|
|
],
|
|
cflags: [
|
|
"-O0",
|
|
"-g",
|
|
],
|
|
|
|
}
|