platform_hardware_interfaces/Android.bp
Steven Moreland b3a4d3832e Remove libhwbinder/libhidltransport deps
Since these were combined into libhidlbase.

Bug: 135686713
Test: build only (libhwbinder/libhidltransport are empty)
Change-Id: I075670b64eebbbbd6a6ae0e84ad51bf1c6f5ba36
2019-09-06 01:07:02 +00:00

48 lines
962 B
Text

hidl_package_root {
name: "android.hardware",
use_current: true,
}
cc_defaults {
name: "hidl_defaults",
cflags: [
"-Wall",
"-Werror",
],
}
// VTS tests must link to HAL definition libraries statically.
cc_defaults {
name: "VtsHalTargetTestDefaults",
defaults: [
"vts_target_tests_defaults",
"hidl_defaults",
],
// Lists all dependencies that can *not* be expected on the device.
static_libs: [
"VtsHalHidlTargetTestBase",
"libhidl-gen-utils",
],
header_libs: [
"libhidl_gtest_helpers",
],
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",
"libutils",
],
cflags: [
"-O0",
"-g",
],
}