aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: db4d39f80741d4d4d4e8dabfb0d28e9c8b156eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cc_library_shared {
    name: "libv4l2_codec2_arcva_factory",
    vendor_available: true,
    product_variables: {
        arc: {
            srcs: ["C2ArcVideoAcceleratorFactory.cpp"],

            shared_libs: [
                "libarcbridge",
                "libarcbridgeservice",
                "libarcvideobridge",
                "libbinder",
                "libchrome",
                "liblog",
                "libmojo",
                "libutils",
            ],

            // -Wno-unused-parameter is needed for libchrome/base codes
            cflags: [
                "-Wall",
                "-Werror",
                "-Wno-unused-parameter",
                "-std=c++14",
            ],
        },
    },
    clang: true,
    export_include_dirs: [
        "include",
    ],
}