1cc_library_shared {
2    name: "android.hardware.nfc@1.0-impl",
3    defaults: ["hidl_defaults"],
4    relative_install_path: "hw",
5    proprietary: true,
6    srcs: ["Nfc.cpp"],
7    shared_libs: [
8        "liblog",
9        "libcutils",
10        "libhardware",
11        "libbase",
12        "libcutils",
13        "libutils",
14        "libhidlbase",
15        "libhidltransport",
16        "android.hardware.nfc@1.0",
17    ],
18}
19
20cc_binary {
21    name: "android.hardware.nfc@1.0-service",
22    defaults: ["hidl_defaults"],
23    relative_install_path: "hw",
24    proprietary: true,
25    init_rc: ["android.hardware.nfc@1.0-service.rc"],
26    srcs: ["service.cpp"],
27
28    shared_libs: [
29        "liblog",
30        "libcutils",
31        "libdl",
32        "libbase",
33        "libutils",
34        "libhardware",
35        "libhidlbase",
36        "libhidltransport",
37        "android.hardware.nfc@1.0",
38    ],
39
40}
41