Files
hardware_interfaces/tests/pointer/1.0/default/lib/Android.bp
Steven Moreland d52e0ff21a Mark hidl test libs as vendor.
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
2017-04-12 13:58:10 -07:00

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