Bob Badour | 589e5f7 | 2022-01-27 10:48:29 -0800 | [diff] [blame] | 1 | package { |
Aditya Choudhary | c5c6c62 | 2024-01-31 11:06:17 +0000 | [diff] [blame^] | 2 | default_team: "trendy_team_fwk_nfc", |
Bob Badour | 589e5f7 | 2022-01-27 10:48:29 -0800 | [diff] [blame] | 3 | // 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 Chang | dbc36e5 | 2021-10-20 11:13:18 +0800 | [diff] [blame] | 11 | cc_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 | } |