summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTri Vo2017-08-03 18:39:02 -0500
committerTri Vo2017-08-07 12:35:14 -0500
commite6ca2b3d634fb3966c98dd66b030d8e7119ba788 (patch)
tree4248e459aa91e5172b800cf81588ef0677a32f09
parentf4c58cd48cee451d801e2e40a94afb08fce89657 (diff)
downloadplatform-hardware-interfaces-e6ca2b3d634fb3966c98dd66b030d8e7119ba788.tar.gz
platform-hardware-interfaces-e6ca2b3d634fb3966c98dd66b030d8e7119ba788.tar.xz
platform-hardware-interfaces-e6ca2b3d634fb3966c98dd66b030d8e7119ba788.zip
Update comments for VtsHalTargetTestDefaults.
Bug: 64040096 Test: only comments added Merged-In: I4a38aa0ed339c65aa4ffbe5c46489f27c745d5d6 Change-Id: I4a38aa0ed339c65aa4ffbe5c46489f27c745d5d6 (cherry picked from commit 1ef659eeda83c758e4f4bd0cc0f8143821d3b49c)
-rw-r--r--Android.bp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 6c9bdd34..7ae00b66 100644
--- a/Android.bp
+++ b/Android.bp
@@ -10,15 +10,21 @@ cc_defaults {
10 ], 10 ],
11} 11}
12 12
13// VTS tests must link to HAL definition libraries statically.
13cc_defaults { 14cc_defaults {
14 name: "VtsHalTargetTestDefaults", 15 name: "VtsHalTargetTestDefaults",
15 defaults: ["hidl_defaults"], 16 defaults: ["hidl_defaults"],
17
18 // Lists all dependencies that can *not* be expected on the device.
16 static_libs: [ 19 static_libs: [
17 "VtsHalHidlTargetTestBase", 20 "VtsHalHidlTargetTestBase",
18 ], 21 ],
19 group_static_libs: true, 22 group_static_libs: true,
23
24 // Lists all system dependencies that can be expected on the device.
20 shared_libs: [ 25 shared_libs: [
21 "libbase", 26 "libbase",
27 // All the following are dependencies of any HAL definition library.
22 "libcutils", 28 "libcutils",
23 "liblog", 29 "liblog",
24 "libhidlbase", 30 "libhidlbase",