Bob Badour | 3306e49 | 2021-02-25 15:35:37 -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 "frameworks_native_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_native_license"], |
| 8 | } |
| 9 | |
Changyeon Jo | ab614c4 | 2020-02-03 16:34:50 -0800 | [diff] [blame] | 10 | cc_library_headers { |
| 11 | name: "libbufferqueueconverter_headers", |
| 12 | vendor_available: true, |
| 13 | export_include_dirs: ["include"], |
| 14 | } |
| 15 | |
Changyeon Jo | 782d8a7 | 2023-04-02 16:03:31 -0700 | [diff] [blame] | 16 | cc_library { |
Changyeon Jo | ab614c4 | 2020-02-03 16:34:50 -0800 | [diff] [blame] | 17 | name: "libbufferqueueconverter", |
| 18 | vendor_available: true, |
| 19 | vndk: { |
| 20 | enabled: true, |
| 21 | }, |
| 22 | double_loadable: true, |
| 23 | |
| 24 | srcs: [ |
Huihong Luo | 0a81aa3 | 2022-02-22 16:02:36 -0800 | [diff] [blame] | 25 | ":libgui_frame_event_aidl", |
Changyeon Jo | ab614c4 | 2020-02-03 16:34:50 -0800 | [diff] [blame] | 26 | "BufferQueueConverter.cpp", |
| 27 | ], |
| 28 | |
| 29 | shared_libs: [ |
| 30 | "libgui", |
| 31 | "libui", |
| 32 | "libutils", |
| 33 | "libbinder", |
| 34 | "libbase", |
| 35 | "liblog", |
| 36 | ], |
Ady Abraham | 107788e | 2023-10-17 12:31:08 -0700 | [diff] [blame^] | 37 | static_libs: ["libguiflags"], |
Changyeon Jo | ab614c4 | 2020-02-03 16:34:50 -0800 | [diff] [blame] | 38 | export_include_dirs: ["include"], |
Ady Abraham | 107788e | 2023-10-17 12:31:08 -0700 | [diff] [blame^] | 39 | export_static_lib_headers: ["libguiflags"], |
Changyeon Jo | ab614c4 | 2020-02-03 16:34:50 -0800 | [diff] [blame] | 40 | } |