1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_av_media_libstagefright_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7}
8
9cc_test {
10    name: "FrameDropper_test",
11    test_suites: [
12        "device-tests",
13        "mts",
14    ],
15    srcs: ["FrameDropper_test.cpp"],
16    shared_libs: [
17        "libstagefright_bufferqueue_helper",
18        "libutils",
19    ],
20    cflags: [
21        "-Werror",
22        "-Wall",
23    ],
24    compile_multilib: "first",
25
26}
27