Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame^] | 1 | package { |
| 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_interfaces_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 8 | } |
| 9 | |
Ilya Matyukhin | 0916698 | 2020-10-12 13:41:03 -0700 | [diff] [blame] | 10 | cc_binary { |
| 11 | name: "android.hardware.biometrics.face-service.example", |
| 12 | relative_install_path: "hw", |
| 13 | init_rc: ["face-default.rc"], |
| 14 | vintf_fragments: ["face-default.xml"], |
| 15 | vendor: true, |
| 16 | shared_libs: [ |
| 17 | "libbase", |
| 18 | "libbinder_ndk", |
Jeongik Cha | 3853391 | 2021-01-28 00:49:49 +0900 | [diff] [blame] | 19 | "android.hardware.biometrics.face-V1-ndk_platform", |
| 20 | "android.hardware.biometrics.common-V1-ndk_platform", |
Ilya Matyukhin | 0916698 | 2020-10-12 13:41:03 -0700 | [diff] [blame] | 21 | ], |
| 22 | srcs: [ |
| 23 | "main.cpp", |
| 24 | "Face.cpp", |
| 25 | "Session.cpp", |
| 26 | ], |
| 27 | } |