blob: 891355b33975808ec19a508bc704cc6349603c6d [file] [log] [blame]
Yifan Hongcc6ad7d2016-10-18 18:44:17 -07001
2
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -07003cc_library {
Yifan Hongcc6ad7d2016-10-18 18:44:17 -07004 name: "android.hardware.tests.inheritance@1.0-impl",
Steven Moreland691a4552017-03-08 15:58:46 -08005 defaults: ["hidl_defaults"],
Yifan Hongcc6ad7d2016-10-18 18:44:17 -07006 relative_install_path: "hw",
7 srcs: [
8 "Fetcher.cpp",
9 "Parent.cpp",
10 "Child.cpp",
11 ],
12
13 shared_libs: [
14 "libbase",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070015 "libcutils",
Yifan Hong63544ea2016-11-16 14:17:58 -080016 "libhidlbase",
17 "libhidltransport",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070018 "libhwbinder",
Yifan Hongcc6ad7d2016-10-18 18:44:17 -070019 "liblog",
20 "libutils",
Yifan Hongcc6ad7d2016-10-18 18:44:17 -070021 ],
22
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070023 // These are static libs only for testing purposes and portability. Shared
24 // libs should be used on device.
25 static_libs: ["android.hardware.tests.inheritance@1.0"],
26
Yifan Hongcc6ad7d2016-10-18 18:44:17 -070027}