blob: 818e1c31278f3894ed1e23e328d3547ee6205aee [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "hardware_interfaces_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["hardware_interfaces_license"],
8}
9
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070010cc_library {
Yifan Hong30dc3de2016-10-17 11:38:15 -070011 name: "libfootest",
Steven Moreland691a4552017-03-08 15:58:46 -080012 defaults: ["hidl_defaults"],
Yifan Hong30dc3de2016-10-17 11:38:15 -070013 srcs: [
14 "FooHelper.cpp"
15 ],
16
17 shared_libs: [
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070018 "libcutils",
Yifan Hong63544ea2016-11-16 14:17:58 -080019 "libhidlbase",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070020 "liblog",
Yifan Hong30dc3de2016-10-17 11:38:15 -070021 ],
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070022 static_libs: ["android.hardware.tests.foo@1.0"],
23
Yifan Hong30dc3de2016-10-17 11:38:15 -070024 local_include_dirs: ["include/hidl-test"],
25 export_include_dirs: ["include"],
26
27}