2020-12-15 01:13:40 +01:00
|
|
|
cc_library_static {
|
|
|
|
name: "libaidlcommonsupport",
|
|
|
|
vendor_available: true,
|
|
|
|
host_supported: true,
|
|
|
|
defaults: ["libbinder_ndk_host_user"],
|
|
|
|
srcs: ["NativeHandle.cpp"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
shared_libs: [
|
2021-01-26 20:37:22 +01:00
|
|
|
"android.hardware.common-V2-ndk_platform",
|
2020-12-15 01:13:40 +01:00
|
|
|
"libcutils",
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
cc_test {
|
|
|
|
name: "libaidlcommonsupport_test",
|
|
|
|
host_supported: true,
|
|
|
|
defaults: ["libbinder_ndk_host_user"],
|
|
|
|
srcs: ["test.cpp"],
|
|
|
|
static_libs: [
|
2021-01-26 20:37:22 +01:00
|
|
|
"android.hardware.common-V2-ndk_platform",
|
2020-12-15 01:13:40 +01:00
|
|
|
"libaidlcommonsupport",
|
|
|
|
],
|
|
|
|
shared_libs: [
|
|
|
|
"libcutils",
|
|
|
|
],
|
|
|
|
test_suites: ["general-tests"],
|
|
|
|
}
|