summaryrefslogtreecommitdiff
path: root/tests/automated/Android.bp
blob: 6e3b1bc73b828d9ad60358bc30104b1b7c18a401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build the unit tests.

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_test {
    name: "BufferQueue_test",

    srcs: ["BufferQueue_test.cpp"],

    shared_libs: ["libOpenSLES"],

    static_libs: ["libOpenSLESUT"],

    cflags: [
        "-Werror",
        "-Wall",
        "-Wno-deprecated-declarations",
    ],
}