diff options
author | Jiyong Park <jiyong@google.com> | 2017-08-29 14:20:59 +0900 |
---|---|---|
committer | Jiyong Park <jiyong@google.com> | 2017-09-15 13:33:41 +0900 |
commit | b5e9a6bdc3d3d990b507d4eb031aea029abe26df (patch) | |
tree | a88b0c1365b57803f8564d62679e62b4f1eee543 /tests/multithread | |
parent | e4d5502c729609e31a57f2062a9c961b31116b39 (diff) | |
download | platform_hardware_interfaces-b5e9a6bdc3d3d990b507d4eb031aea029abe26df.tar.gz platform_hardware_interfaces-b5e9a6bdc3d3d990b507d4eb031aea029abe26df.tar.bz2 platform_hardware_interfaces-b5e9a6bdc3d3d990b507d4eb031aea029abe26df.zip |
HAL interface libs for testing are built w/o VNDK.
The HAL interfaces for testing were copied to /system/lib[64]/vndk
directory since they are built as cc_library and thus falsely recognized
as members of VNDK, which isn't true.
Build them as non-VNDK so that they are filtered out. To do so,
.hidl_for_test files are added for the test HALs and update-makefiles.sh
were ran.
Bug: 64776708
Test: no android.hardware.tests.*.so file in /system/lib[64]/vndk on
2017 pixel devices
Merged-In: I6167da8572081adfb53f432b248ac3bbee39dc42
Change-Id: I6167da8572081adfb53f432b248ac3bbee39dc42
(cherry picked from commit 526a36ca2415e66a8b1b7b0d596fab26d8e18724)
Diffstat (limited to 'tests/multithread')
-rw-r--r-- | tests/multithread/1.0/.hidl_for_test | 0 | ||||
-rw-r--r-- | tests/multithread/1.0/Android.bp | 3 |
2 files changed, 0 insertions, 3 deletions
diff --git a/tests/multithread/1.0/.hidl_for_test b/tests/multithread/1.0/.hidl_for_test new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/multithread/1.0/.hidl_for_test diff --git a/tests/multithread/1.0/Android.bp b/tests/multithread/1.0/Android.bp index 68c19aa19f..5f4c44c980 100644 --- a/tests/multithread/1.0/Android.bp +++ b/tests/multithread/1.0/Android.bp @@ -42,9 +42,6 @@ cc_library { generated_headers: ["android.hardware.tests.multithread@1.0_genc++_headers"], export_generated_headers: ["android.hardware.tests.multithread@1.0_genc++_headers"], vendor_available: true, - vndk: { - enabled: true, - }, shared_libs: [ "libhidlbase", "libhidltransport", |