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.
53 lines
1.1 KiB
53 lines
1.1 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 {
|
|
name: "libv4l2_codec2_common",
|
|
vendor: true,
|
|
|
|
defaults: [
|
|
"libcodec2-impl-defaults",
|
|
],
|
|
|
|
srcs: [
|
|
"Common.cpp",
|
|
"EncodeHelpers.cpp",
|
|
"FormatConverter.cpp",
|
|
"Fourcc.cpp",
|
|
"NalParser.cpp",
|
|
"V4L2ComponentCommon.cpp",
|
|
"VideoTypes.cpp",
|
|
"V4L2Device.cpp",
|
|
"V4L2DevicePoller.cpp",
|
|
"VideoPixelFormat.cpp",
|
|
],
|
|
|
|
export_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libchrome",
|
|
"libcutils",
|
|
"liblog",
|
|
"libstagefright_foundation",
|
|
"libui",
|
|
"libutils",
|
|
],
|
|
|
|
static_libs: [
|
|
"libyuv_static"
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
}
|