Files
hardware_interfaces/Android.bp
Steven Moreland 0a28e1cf83 Set use_current for current.txt.
This option is being added in order to add current.txt into the build
graph.

Bug: 119117395
Test: m nothing (checks the build graph)
Change-Id: I98490d70ad297e1628ed95fbebd082c03b287d63
2018-11-29 17:13:58 -08:00

43 lines
900 B
Plaintext

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: ["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",
],
}