aboutsummaryrefslogtreecommitdiff
path: root/fuzzer/Android.bp
blob: 1ea58b0d748810f33e0c54bb8f377958f93dd805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "external_libxaac_license"
    // to get the below license kinds:
    //   SPDX-license-identifier-Apache-2.0
    default_applicable_licenses: ["external_libxaac_license"],
}

cc_fuzz {
    name: "xaac_dec_fuzzer",
    host_supported: true,
    srcs: [
        "xaac_dec_fuzzer.cpp",
    ],
    static_libs: [
        "libxaacdec",
        "liblog",
    ],
    fuzz_config: {
        cc: [
            "android-media-fuzzing-reports@google.com",
        ],
        componentid: 155276,
    },
}