Sungtak Lee | 8602fe3 | 2022-10-19 17:01:18 +0000 | [diff] [blame] | 1 | // This is the expected build file, but it may not be right in all cases |
| 2 | |
Bob Badour | 0468ee6 | 2022-12-15 07:20:02 -0800 | [diff] [blame] | 3 | package { |
| 4 | // See: http://go/android-license-faq |
| 5 | // A large-scale-change added 'default_applicable_licenses' to import |
| 6 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 7 | // to get the below license kinds: |
| 8 | // SPDX-license-identifier-Apache-2.0 |
| 9 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 10 | } |
| 11 | |
Sungtak Lee | 8602fe3 | 2022-10-19 17:01:18 +0000 | [diff] [blame] | 12 | aidl_interface { |
| 13 | name: "android.hardware.media.c2", |
| 14 | vendor_available: true, |
| 15 | srcs: ["android/hardware/media/c2/*.aidl"], |
| 16 | include_dirs: [ |
| 17 | "frameworks/native/aidl/gui", |
| 18 | ], |
| 19 | imports: [ |
| 20 | "android.hardware.common-V2", |
| 21 | "android.hardware.media.bufferpool2-V1", |
| 22 | ], |
| 23 | stability: "vintf", |
| 24 | backend: { |
| 25 | cpp: { |
| 26 | enabled: false, |
| 27 | }, |
| 28 | java: { |
| 29 | enabled: false, |
| 30 | }, |
| 31 | ndk: { |
| 32 | enabled: true, |
| 33 | additional_shared_libraries: [ |
| 34 | "libnativewindow", |
| 35 | ], |
| 36 | }, |
| 37 | }, |
| 38 | } |