You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
818 B
40 lines
818 B
subdirs = [ |
|
"*" |
|
] |
|
|
|
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", |
|
], |
|
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", |
|
], |
|
|
|
}
|
|
|