blob: 0cda51ddb7db654da227af8121657ffde9278155 [file] [log] [blame]
Bob Badour589e5f72022-01-27 10:48:29 -08001package {
Aditya Choudharyc5c6c622024-01-31 11:06:17 +00002 default_team: "trendy_team_fwk_nfc",
Bob Badour589e5f72022-01-27 10:48:29 -08003 // See: http://go/android-license-faq
4 // A large-scale-change added 'default_applicable_licenses' to import
5 // all of the 'license_kinds' from "hardware_interfaces_license"
6 // to get the below license kinds:
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["hardware_interfaces_license"],
9}
10
George Changdbc36e52021-10-20 11:13:18 +080011cc_binary {
12 name: "android.hardware.nfc-service.example",
13 relative_install_path: "hw",
14 init_rc: ["nfc-service-example.rc"],
15 vintf_fragments: ["nfc-service-example.xml"],
16 vendor: true,
17 cflags: [
18 "-Wall",
19 "-Wextra",
20 ],
21 shared_libs: [
22 "libbase",
23 "liblog",
24 "libutils",
25 "libbinder_ndk",
26 "android.hardware.nfc-V1-ndk",
27 ],
28 srcs: [
29 "main.cpp",
30 "Nfc.cpp",
31 "Vendor_hal_api.cpp",
32 ],
33}