1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "hardware_samsung_nfc_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["hardware_samsung_nfc_license"],
8}
9
10cc_binary {
11    name: "android.hardware.nfc@1.2-service.samsung",
12    defaults: ["hidl_defaults"],
13    proprietary: true,
14    init_rc: ["android.hardware.nfc@1.2-service.samsung.rc"],
15    vintf_fragments: ["android.hardware.nfc@1.2-service.samsung.xml"],
16    relative_install_path: "hw",
17    srcs: [
18        "SecNfcService.cpp",
19        "SecNfc.cpp",
20    ],
21    cflags: [
22    ],
23    shared_libs: [
24        "nfc_nci_samsung",
25        "android.hardware.nfc@1.0",
26        "android.hardware.nfc@1.1",
27        "android.hardware.nfc@1.2",
28        "libbase",
29        "libcutils",
30        "libhardware",
31        "liblog",
32        "libutils",
33        "libhidlbase",
34        "libcrypto",
35    ],
36}
37