1 2 3cc_library { 4 name: "android.hardware.tests.foo@1.0-impl", 5 defaults: ["hidl_defaults"], 6 relative_install_path: "hw", 7 srcs: [ 8 "Foo.cpp", 9 ], 10 11 shared_libs: [ 12 "libbase", 13 "libcutils", 14 "libfootest", 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: ["android.hardware.tests.foo@1.0"], 25 26} 27