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_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_av_license"],
8}
9
10cc_test_library {
11    name: "libmediabenchmark_jni",
12    sdk_version: "current",
13
14    defaults: [
15        "libmediabenchmark_common-defaults",
16        "libmediabenchmark_soft_sanitize_all-defaults",
17    ],
18
19    srcs: [
20        "NativeExtractor.cpp",
21        "NativeMuxer.cpp",
22        "NativeEncoder.cpp",
23        "NativeDecoder.cpp",
24    ],
25
26    shared_libs: [
27        "liblog",
28    ],
29
30    static_libs: [
31        "libmediabenchmark_common",
32        "libmediabenchmark_extractor",
33        "libmediabenchmark_muxer",
34        "libmediabenchmark_decoder",
35        "libmediabenchmark_encoder",
36    ],
37
38    cflags: [
39        "-Wall",
40        "-Werror",
41    ],
42}
43