• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_binary {
6    name: "android.hardware.nfc-service.cuttlefish",
7    relative_install_path: "hw",
8    init_rc: ["nfc-service-cuttlefish.rc"],
9    vintf_fragments: ["nfc-service-cuttlefish.xml"],
10    vendor: true,
11    cflags: [
12        "-Wall",
13        "-Wextra",
14    ],
15    shared_libs: [
16        "libbase",
17        "liblog",
18        "libutils",
19        "libbinder_ndk",
20        "android.hardware.nfc-V1-ndk",
21    ],
22    required: [
23        "libnfc-hal-cf.conf-default",
24    ],
25    srcs: [
26        "main.cc",
27        "Nfc.cc",
28        "Cf_hal_api.cc",
29    ],
30}
31