mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
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
43 lines
900 B
Plaintext
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",
|
|
],
|
|
|
|
}
|