summaryrefslogtreecommitdiff
path: root/media/tests/audiotests/Android.bp
blob: 5db0ab0cde6d63b844a46705b865933e24304b13 (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
cc_test {
    name: "shared_mem_test",
    gtest: false,

    srcs: ["shared_mem_test.cpp"],

    shared_libs: [
        "liblog",
        "libcutils",
        "libutils",
        "libbinder",
        "libhardware_legacy",
        "libmedia",
        "libaudioclient",
    ],

    header_libs: [
        "libmediametrics_headers",
    ],

    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-error=deprecated-declarations",
        "-Wunused",
        "-Wunreachable-code",
    ],
}