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 | |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 10 | cc_library_shared { |
Yin-Chia Yeh | 469c67b | 2017-02-02 18:24:26 -0800 | [diff] [blame] | 11 | name: "camera.device@3.2-impl", |
Steven Moreland | 48c5224 | 2017-03-08 16:11:32 -0800 | [diff] [blame] | 12 | defaults: ["hidl_defaults"], |
Jiyong Park | 23cd03b | 2017-03-09 11:00:30 +0900 | [diff] [blame] | 13 | proprietary: true, |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 14 | srcs: [ |
| 15 | "CameraDevice.cpp", |
| 16 | "CameraDeviceSession.cpp", |
| 17 | "convert.cpp", |
| 18 | ], |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 19 | shared_libs: [ |
| 20 | "libhidlbase", |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 21 | "libutils", |
| 22 | "libcutils", |
| 23 | "android.hardware.camera.device@3.2", |
| 24 | "android.hardware.camera.provider@2.4", |
Yin-Chia Yeh | 519c167 | 2017-04-21 14:59:31 -0700 | [diff] [blame] | 25 | "android.hardware.graphics.mapper@2.0", |
Shuzhen Wang | 915115e | 2019-05-10 12:07:14 -0700 | [diff] [blame] | 26 | "android.hardware.graphics.mapper@3.0", |
Marissa Wall | a51eb93 | 2019-06-21 09:13:35 -0700 | [diff] [blame] | 27 | "android.hardware.graphics.mapper@4.0", |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 28 | "liblog", |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 29 | "libgralloctypes", |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 30 | "libhardware", |
Yifan Hong | 1192e1d | 2017-04-11 14:45:00 -0700 | [diff] [blame] | 31 | "libcamera_metadata", |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 32 | "libfmq", |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 33 | ], |
| 34 | static_libs: [ |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 35 | "android.hardware.camera.common@1.0-helper", |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 36 | ], |
Yifan Hong | 1192e1d | 2017-04-11 14:45:00 -0700 | [diff] [blame] | 37 | export_include_dirs: ["."], |
| 38 | export_shared_lib_headers: [ |
| 39 | "libfmq", |
Jason Macnak | eda6dca | 2020-04-15 15:20:59 -0700 | [diff] [blame] | 40 | ], |
Yin-Chia Yeh | faef8f9 | 2016-10-31 12:53:56 -0700 | [diff] [blame] | 41 | } |