1
2
3cc_library {
4    name: "[email protected]",
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        "liblog",
18        "libutils",
19    ],
20
21    // These are static libs only for testing purposes and portability. Shared
22    // libs should be used on device.
23    static_libs: ["[email protected]"],
24
25}
26