1
2
3cc_library {
4    name: "android.hardware.tests.bar@1.0-impl",
5    defaults: ["hidl_defaults"],
6    relative_install_path: "hw",
7    srcs: [
8        "Bar.cpp",
9        "ImportTypes.cpp",
10    ],
11
12    shared_libs: [
13        "libbase",
14        "libcutils",
15        "libhidlbase",
16        "liblog",
17        "libutils",
18    ],
19
20    // These are static libs only for testing purposes and portability. Shared
21    // libs should be used on device.
22    static_libs: [
23        "android.hardware.tests.foo@1.0",
24        "android.hardware.tests.bar@1.0",
25    ],
26}
27