summaryrefslogtreecommitdiff
path: root/media/codecs/cmds/Android.bp
blob: 69142e8dca9d66680ae1f0ee468c09a9fcf7ee3e (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
cc_binary {
    name: "codec2",
    defaults: ["libstagefright_codec2-impl-defaults"],

    srcs: [
        "codec2.cpp",
    ],

    include_dirs: [
    ],

    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",
        ],
    },
}