mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:23:37 +00:00
They must be on the vendor partition for hidl_test to be able to link to
them when the VNDK is in place.
Test: hidl_test
Bug: 33241851
(cherry picked from commit 00556e0a11)
Merged-In: I23c9e0674aaf33602bc9fde0515eb2f87ce5c60c
Change-Id: I23c9e0674aaf33602bc9fde0515eb2f87ce5c60c
20 lines
395 B
Plaintext
20 lines
395 B
Plaintext
cc_library_shared {
|
|
name: "libpointertest",
|
|
vendor: true,
|
|
defaults: ["hidl_defaults"],
|
|
srcs: [
|
|
"PointerHelper.cpp"
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"android.hardware.tests.pointer@1.0",
|
|
],
|
|
local_include_dirs: ["include/hidl-test"],
|
|
export_include_dirs: ["include"],
|
|
|
|
}
|