blob: d72411e6e262549c84e9d0ad6fae75a6b144a859 [file] [log] [blame]
Bob Badourc22b35b2021-02-23 14:26:20 -08001package {
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 Matyukhin09166982020-10-12 13:41:03 -070010cc_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 Cha38533912021-01-28 00:49:49 +090019 "android.hardware.biometrics.face-V1-ndk_platform",
20 "android.hardware.biometrics.common-V1-ndk_platform",
Ilya Matyukhin09166982020-10-12 13:41:03 -070021 ],
22 srcs: [
23 "main.cpp",
24 "Face.cpp",
25 "Session.cpp",
26 ],
27}