| package { |
| // See: http://go/android-license-faq |
| // A large-scale-change added 'default_applicable_licenses' to import |
| // all of the 'license_kinds' from "frameworks_av_license" |
| // to get the below license kinds: |
| // SPDX-license-identifier-Apache-2.0 |
| default_applicable_licenses: ["frameworks_av_license"], |
| } |
| |
| cc_library_headers { |
| name: "libcodec2_hidl_plugin_headers", |
| vendor_available: true, |
| export_include_dirs: [ |
| "include", |
| ], |
| } |
| |
| cc_library { |
| name: "libcodec2_hidl_plugin_stub", |
| |
| srcs: [ |
| "DefaultFilterPlugin.cpp", |
| "FilterWrapperStub.cpp", |
| ], |
| |
| header_libs: [ |
| "libcodec2_internal", // private |
| ], |
| |
| shared_libs: [ |
| "libbase", |
| "libcodec2", |
| "libcodec2_vndk", |
| "liblog", |
| "libutils", |
| ], |
| |
| export_include_dirs: [ |
| "include", |
| "internal", |
| ], |
| |
| apex_available: [ |
| "//apex_available:platform", |
| "com.android.media.swcodec", |
| ], |
| min_sdk_version: "29", |
| } |
| |
| cc_library { |
| name: "libcodec2_hidl_plugin", |
| vendor: true, |
| |
| srcs: [ |
| "DefaultFilterPlugin.cpp", |
| "FilterWrapper.cpp", |
| ], |
| |
| header_libs: [ |
| "libcodec2_internal", // private |
| ], |
| |
| shared_libs: [ |
| "libbase", |
| "libcodec2", |
| "libcodec2_vndk", |
| "liblog", |
| "libutils", |
| ], |
| |
| export_include_dirs: [ |
| "include", |
| "internal", |
| ], |
| } |