1
2
3cc_library {
4    name: "android.hardware.tests.inheritance@1.0-impl",
5    defaults: ["hidl_defaults"],
6    relative_install_path: "hw",
7    srcs: [
8        "Fetcher.cpp",
9        "Parent.cpp",
10        "Child.cpp",
11    ],
12
13    shared_libs: [
14        "libbase",
15        "libcutils",
16        "libhidlbase",
17        "libhidltransport",
18        "libhwbinder",
19        "liblog",
20        "libutils",
21    ],
22
23    // 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
27}
28