• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 "external_tremolo_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["external_tremolo_license"],
8}
9
10cc_test {
11    name: "VorbisDecoderTest",
12    gtest: true,
13    test_suites: ["device-tests"],
14
15    srcs: [
16        "VorbisDecoderTest.cpp",
17    ],
18
19    shared_libs: [
20        "libutils",
21        "liblog",
22    ],
23
24    static_libs: [
25        "libvorbisidec",
26    ],
27
28    cflags: [
29        "-Werror",
30        "-Wall",
31    ],
32
33    sanitize: {
34        misc_undefined: [
35            "unsigned-integer-overflow",
36            "signed-integer-overflow",
37        ],
38        cfi: true,
39    },
40}
41