• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_shared {
2    name: "libv4l2_codec2_arcva_factory",
3    vendor_available: true,
4    product_variables: {
5        arc: {
6            srcs: ["C2ArcVideoAcceleratorFactory.cpp"],
7
8            shared_libs: [
9                "libarcbridge",
10                "libarcbridgeservice",
11                "libarcvideobridge",
12                "libbinder",
13                "libchrome",
14                "liblog",
15                "libmojo",
16                "libutils",
17            ],
18
19            // -Wno-unused-parameter is needed for libchrome/base codes
20            cflags: [
21                "-Wall",
22                "-Werror",
23                "-Wno-unused-parameter",
24                "-std=c++14",
25            ],
26        },
27    },
28    clang: true,
29    export_include_dirs: [
30        "include",
31    ],
32}
33