blob: c1e0d9b5c924eb7786cd4d0e50ec61805625c67b [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 Hong604e8f02017-03-29 15:46:12 -070011 name: "android.hardware.tests.hash@1.0-impl",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070012 defaults: ["hidl_defaults"],
Yifan Hong604e8f02017-03-29 15:46:12 -070013 relative_install_path: "hw",
Yifan Hong604e8f02017-03-29 15:46:12 -070014 srcs: [
15 "Hash.cpp",
16 ],
17 shared_libs: [
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070018 "libcutils",
Yifan Hong604e8f02017-03-29 15:46:12 -070019 "libhidlbase",
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070020 "liblog",
Yifan Hong604e8f02017-03-29 15:46:12 -070021 "libutils",
Yifan Hong604e8f02017-03-29 15:46:12 -070022 ],
Zhuoyao Zhang38a78e12017-10-10 17:53:09 -070023
24 // These are static libs only for testing purposes and portability. Shared
25 // libs should be used on device.
26 static_libs: ["android.hardware.tests.hash@1.0"],
Yifan Hong604e8f02017-03-29 15:46:12 -070027}