Bob Badour | b224b36 | 2021-02-12 20:13:01 -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 | |
Steven Moreland | 731531d | 2017-06-26 19:22:03 +0000 | [diff] [blame] | 10 | cc_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 Moreland | 731531d | 2017-06-26 19:22:03 +0000 | [diff] [blame] | 25 | "libbase", |
| 26 | "libbinder", |
| 27 | "libcutils", |
| 28 | "libhardware", |
| 29 | "libhidlbase", |
Steven Moreland | 731531d | 2017-06-26 19:22:03 +0000 | [diff] [blame] | 30 | "liblog", |
Scott Randolph | 46bc128 | 2017-07-27 18:26:27 -0700 | [diff] [blame] | 31 | "libui", |
Steven Moreland | 731531d | 2017-06-26 19:22:03 +0000 | [diff] [blame] | 32 | "libutils", |
| 33 | ], |
| 34 | |
| 35 | cflags: [ |
| 36 | "-O0", |
| 37 | "-g", |
| 38 | ], |
Changyeon Jo | 6912b90 | 2020-03-29 10:01:50 -0700 | [diff] [blame] | 39 | |
| 40 | vintf_fragments: [ |
| 41 | "manifest_android.hardware.automotive.evs@1.0-service.xml", |
| 42 | ], |
Steven Moreland | 731531d | 2017-06-26 19:22:03 +0000 | [diff] [blame] | 43 | } |