1 2 3cc_library { 4 name: "android.hardware.tests.bar@1.0-impl", 5 defaults: ["hidl_defaults"], 6 relative_install_path: "hw", 7 srcs: [ 8 "Bar.cpp", 9 "ImportTypes.cpp", 10 ], 11 12 shared_libs: [ 13 "libbase", 14 "libcutils", 15 "libhidlbase", 16 "libhidltransport", 17 "libhwbinder", 18 "liblog", 19 "libutils", 20 ], 21 22 // These are static libs only for testing purposes and portability. Shared 23 // libs should be used on device. 24 static_libs: [ 25 "android.hardware.tests.foo@1.0", 26 "android.hardware.tests.bar@1.0", 27 ], 28} 29