You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
55 lines
1.3 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_v4l2_codec2_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["external_v4l2_codec2_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libc2plugin_store",
|
|
vendor: true,
|
|
|
|
defaults: [
|
|
"libcodec2-impl-defaults",
|
|
],
|
|
|
|
srcs: [
|
|
"C2VdaBqBlockPool.cpp",
|
|
"C2VdaPooledBlockPool.cpp",
|
|
"DrmGrallocHelpers.cpp",
|
|
"H2BGraphicBufferProducer.cpp",
|
|
"V4L2PluginStore.cpp",
|
|
"VendorAllocatorLoader.cpp",
|
|
],
|
|
export_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
header_libs: [
|
|
"libcodec2_internal", // needed for including C2BqBufferPriv.h.
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.graphics.bufferqueue@2.0",
|
|
"libchrome",
|
|
"libcutils",
|
|
"libdrm",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libnativewindow",
|
|
"liblog",
|
|
"libstagefright_bufferpool@1.0",
|
|
"libstagefright_bufferqueue_helper",
|
|
"libstagefright_foundation",
|
|
"libui",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
"-Wno-unused-parameter", // needed for libchrome/base codes
|
|
"-Wthread-safety",
|
|
],
|
|
}
|