1
2
3cc_library {
4    name: "android.hardware.tests.foo@1.0-impl",
5    defaults: ["hidl_defaults"],
6    relative_install_path: "hw",
7    srcs: [
8        "Foo.cpp",
9    ],
10
11    shared_libs: [
12        "libbase",
13        "libcutils",
14        "libfootest",
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: ["android.hardware.tests.foo@1.0"],
23
24}
25