blob: c4c624f8aac4f8024002c53aab7e92477c1d6610 [file] [log] [blame]
Bob Badourb224b362021-02-12 20:13:01 -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
Steven Moreland731531d2017-06-26 19:22:03 +000010cc_binary {
11 name: "android.hardware.automotive.evs@1.0-service",
12 defaults: ["hidl_defaults"],
13 proprietary: true,
14 relative_install_path: "hw",
15 srcs: [
16 "service.cpp",
17 "EvsCamera.cpp",
18 "EvsEnumerator.cpp",
19 "EvsDisplay.cpp"
20 ],
21 init_rc: ["android.hardware.automotive.evs@1.0-service.rc"],
22
23 shared_libs: [
24 "android.hardware.automotive.evs@1.0",
Steven Moreland731531d2017-06-26 19:22:03 +000025 "libbase",
26 "libbinder",
27 "libcutils",
28 "libhardware",
29 "libhidlbase",
Steven Moreland731531d2017-06-26 19:22:03 +000030 "liblog",
Scott Randolph46bc1282017-07-27 18:26:27 -070031 "libui",
Steven Moreland731531d2017-06-26 19:22:03 +000032 "libutils",
33 ],
34
35 cflags: [
36 "-O0",
37 "-g",
38 ],
Changyeon Jo6912b902020-03-29 10:01:50 -070039
40 vintf_fragments: [
41 "manifest_android.hardware.automotive.evs@1.0-service.xml",
42 ],
Steven Moreland731531d2017-06-26 19:22:03 +000043}