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.
80 lines
1.9 KiB
80 lines
1.9 KiB
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_shared {
|
|
name: "libsfplugin_ccodec",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
srcs: [
|
|
"C2OMXNode.cpp",
|
|
"CCodec.cpp",
|
|
"CCodecBufferChannel.cpp",
|
|
"CCodecBuffers.cpp",
|
|
"CCodecConfig.cpp",
|
|
"Codec2Buffer.cpp",
|
|
"Codec2InfoBuilder.cpp",
|
|
"FrameReassembler.cpp",
|
|
"PipelineWatcher.cpp",
|
|
"ReflectedParamUpdater.cpp",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
|
|
header_libs: [
|
|
"libcodec2_internal",
|
|
"libmediadrm_headers",
|
|
"libmediametrics_headers",
|
|
"media_ndk_headers",
|
|
],
|
|
|
|
shared_libs: [
|
|
"android.hardware.cas.native@1.0",
|
|
"android.hardware.drm@1.0",
|
|
"android.hardware.media.c2@1.0",
|
|
"android.hardware.media.omx@1.0",
|
|
"libbase",
|
|
"libbinder",
|
|
"libcodec2",
|
|
"libcodec2_client",
|
|
"libcodec2_vndk",
|
|
"libcutils",
|
|
"libgui",
|
|
"libhidlallocatorutils",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libmedia_codeclist",
|
|
"libmedia_omx",
|
|
"libsfplugin_ccodec_utils",
|
|
"libstagefright_bufferqueue_helper",
|
|
"libstagefright_codecbase",
|
|
"libstagefright_foundation",
|
|
"libstagefright_omx",
|
|
"libstagefright_xmlparser",
|
|
"libui",
|
|
"libutils",
|
|
],
|
|
|
|
export_shared_lib_headers: [
|
|
"libcodec2",
|
|
"libcodec2_client",
|
|
],
|
|
|
|
sanitize: {
|
|
cfi: true,
|
|
misc_undefined: [
|
|
"unsigned-integer-overflow",
|
|
"signed-integer-overflow",
|
|
],
|
|
},
|
|
}
|