blob: fd0cf0b145578e5da84ff1f1cc1e7e52be4133b3 [file] [log] [blame]
Yifan Hongd5b5b2e2016-10-06 13:50:49 -07001
2
Bob Badourb224b362021-02-12 20:13:01 -08003package {
4 // See: http://go/android-license-faq
5 // A large-scale-change added 'default_applicable_licenses' to import
6 // all of the 'license_kinds' from "hardware_interfaces_license"
7 // to get the below license kinds:
8 // SPDX-license-identifier-Apache-2.0
9 default_applicable_licenses: ["hardware_interfaces_license"],
10}
11
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070012cc_library {
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070013 name: "android.hardware.tests.bar@1.0-impl",
Steven Moreland691a4552017-03-08 15:58:46 -080014 defaults: ["hidl_defaults"],
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070015 relative_install_path: "hw",
16 srcs: [
17 "Bar.cpp",
18 "ImportTypes.cpp",
19 ],
20
21 shared_libs: [
22 "libbase",
Yifan Hongebfa6332016-10-14 10:41:41 -070023 "libcutils",
Yifan Hong63544ea2016-11-16 14:17:58 -080024 "libhidlbase",
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070025 "liblog",
26 "libutils",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070027 ],
28
29 // These are static libs only for testing purposes and portability. Shared
30 // libs should be used on device.
31 static_libs: [
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070032 "android.hardware.tests.foo@1.0",
33 "android.hardware.tests.bar@1.0",
34 ],
Yifan Hongd5b5b2e2016-10-06 13:50:49 -070035}