summaryrefslogtreecommitdiff
path: root/media/codec2/components/cmds/Android.bp
blob: a081e2871ca20efa4b0dd44adbb5326475f6138d (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
33
34
35
36
37
38
39
40
41
cc_binary {
    name: "codec2play",
    defaults: ["libcodec2-impl-defaults"],

    srcs: [
        "codec2.cpp",
    ],

    include_dirs: [
    ],

    header_libs: [
        "libmediadrm_headers",
    ],

    shared_libs: [
        "libbase",
        "libbinder",
        "libcutils",
        "libdatasource",
        "libgui",
        "liblog",
        "libstagefright",
        "libstagefright_foundation",
        "libui",
        "libutils",
    ],

    cflags: [
        "-Werror",
        "-Wall",
    ],

    sanitize: {
        cfi: true,
        misc_undefined: [
            "unsigned-integer-overflow",
            "signed-integer-overflow",
        ],
    },
}