• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_test_library {
2    name: "libmediabenchmark_jni",
3    sdk_version: "current",
4
5    defaults: [
6        "libmediabenchmark_common-defaults",
7        "libmediabenchmark_soft_sanitize_all-defaults",
8    ],
9
10    srcs: [
11        "NativeExtractor.cpp",
12        "NativeMuxer.cpp",
13        "NativeEncoder.cpp",
14        "NativeDecoder.cpp",
15    ],
16
17    shared_libs: [
18        "liblog",
19    ],
20
21    static_libs: [
22        "libmediabenchmark_common",
23        "libmediabenchmark_extractor",
24        "libmediabenchmark_muxer",
25        "libmediabenchmark_decoder",
26        "libmediabenchmark_encoder",
27    ],
28
29    cflags: [
30        "-Wall",
31        "-Werror",
32    ],
33}
34