blob: d9dfc692666158abdfde3aa461310e203287f163 [file] [log] [blame]
Yifan Hongd5b5b2e2016-10-06 13:50:49 -07001
2
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -07003cc_library {
Yifan Hongd5b5b2e2016-10-06 13:50:49 -07004 name: "android.hardware.tests.foo@1.0-impl",
Steven Moreland691a4552017-03-08 15:58:46 -08005 defaults: ["hidl_defaults"],
Yifan Hongd5b5b2e2016-10-06 13:50:49 -07006 relative_install_path: "hw",
7 srcs: [
8 "Foo.cpp",
Yifan Hongd5b5b2e2016-10-06 13:50:49 -07009 ],
10
11 shared_libs: [
12 "libbase",
Yifan Hongebfa6332016-10-14 10:41:41 -070013 "libcutils",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070014 "libfootest",
Yifan Hong63544ea2016-11-16 14:17:58 -080015 "libhidlbase",
16 "libhidltransport",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070017 "libhwbinder",
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070018 "liblog",
19 "libutils",
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070020 ],
21
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070022 // 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
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070026}