Skip to content
Snippets Groups Projects
Commit 2e813d9b authored by David Staessens's avatar David Staessens Committed by Chih-Yu Huang
Browse files

v4l2_codec2: remove libv4l2_codec2_accel library.

This CL removes the libv4l2_codec2_accel library now all files have
been removed from the library, and updates dependent modules.

Bug: 155138142
Test: m -j32
Change-Id: I45629ae702b12aedf9a6be256d955e702da8245d
parent 669080c4
No related branches found
No related tags found
No related merge requests found
# The codes in this directory are ported from Chromium Project.
# Therefore, they are obviously based on Chromium coding style
# and shouldn't be formatted by Android Coding Style
BasedOnStyle: Chromium
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_accel",
vendor: true,
srcs: [ ],
shared_libs: [
"libchrome",
"liblog",
"libui"
],
// -Wno-unused-parameter is needed for libchrome/base codes
cflags: [
"-Wall",
"-Werror",
"-Wno-unused-parameter",
"-Wno-implicit-fallthrough", // at h264_decoder.cc:1374
],
clang: true,
sanitize: {
misc_undefined: [
"unsigned-integer-overflow",
"signed-integer-overflow",
],
},
ldflags: [
"-Wl",
"-Bsymbolic",
],
export_include_dirs: ["."],
}
......@@ -39,7 +39,6 @@ cc_library {
"libstagefright_foundation",
"libui",
"libutils",
"libv4l2_codec2_accel"
],
static_libs: [
......
......@@ -49,7 +49,6 @@ cc_library {
"libui",
],
static_libs: [
"libv4l2_codec2_accel",
"libv4l2_codec2_common",
],
......
......@@ -24,11 +24,9 @@ cc_test {
"liblog",
"libui",
"libutils",
"libv4l2_codec2_accel",
"libv4l2_codec2_components",
],
include_dirs: [
"external/v4l2_codec2/accel",
"external/v4l2_codec2/common/include",
"external/v4l2_codec2/components/include",
"frameworks/av/media/codec2/components/base/include",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment