xref: /aosp_15_r20/hardware/interfaces/tests/bar/1.0/default/Android.bp (revision 4d7e907c777eeecc4c5bd7cf640a754fac206ff7)
1
2
3package {
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
12cc_library {
13    name: "[email protected]",
14    defaults: ["hidl_defaults"],
15    relative_install_path: "hw",
16    srcs: [
17        "Bar.cpp",
18        "ImportTypes.cpp",
19    ],
20
21    shared_libs: [
22        "libbase",
23        "libcutils",
24        "libhidlbase",
25        "liblog",
26        "libutils",
27    ],
28
29    // These are static libs only for testing purposes and portability. Shared
30    // libs should be used on device.
31    static_libs: [
32        "[email protected]",
33        "[email protected]",
34    ],
35}
36