xref: /aosp_15_r20/external/tremolo/fuzzer/Android.bp (revision bda690e46497e1f65c5077173b9c548e6e0cd5a1)
1*bda690e4SXin Li/******************************************************************************
2*bda690e4SXin Li *
3*bda690e4SXin Li * Copyright (C) 2020 The Android Open Source Project
4*bda690e4SXin Li *
5*bda690e4SXin Li * Licensed under the Apache License, Version 2.0 (the "License");
6*bda690e4SXin Li * you may not use this file except in compliance with the License.
7*bda690e4SXin Li * You may obtain a copy of the License at:
8*bda690e4SXin Li *
9*bda690e4SXin Li * http://www.apache.org/licenses/LICENSE-2.0
10*bda690e4SXin Li *
11*bda690e4SXin Li * Unless required by applicable law or agreed to in writing, software
12*bda690e4SXin Li * distributed under the License is distributed on an "AS IS" BASIS,
13*bda690e4SXin Li * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*bda690e4SXin Li * See the License for the specific language governing permissions and
15*bda690e4SXin Li * limitations under the License.
16*bda690e4SXin Li *
17*bda690e4SXin Li *****************************************************************************
18*bda690e4SXin Li * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19*bda690e4SXin Li */
20*bda690e4SXin Li
21*bda690e4SXin Lipackage {
22*bda690e4SXin Li    // See: http://go/android-license-faq
23*bda690e4SXin Li    // A large-scale-change added 'default_applicable_licenses' to import
24*bda690e4SXin Li    // all of the 'license_kinds' from "external_tremolo_license"
25*bda690e4SXin Li    // to get the below license kinds:
26*bda690e4SXin Li    //   SPDX-license-identifier-Apache-2.0
27*bda690e4SXin Li    default_applicable_licenses: ["external_tremolo_license"],
28*bda690e4SXin Li}
29*bda690e4SXin Li
30*bda690e4SXin Licc_fuzz {
31*bda690e4SXin Li    name: "vorbis_dec_fuzzer",
32*bda690e4SXin Li    host_supported: true,
33*bda690e4SXin Li    srcs: [
34*bda690e4SXin Li        "vorbis_dec_fuzzer.cpp",
35*bda690e4SXin Li    ],
36*bda690e4SXin Li    static_libs: [
37*bda690e4SXin Li        "libvorbisidec",
38*bda690e4SXin Li        "liblog",
39*bda690e4SXin Li    ],
40*bda690e4SXin Li    fuzz_config: {
41*bda690e4SXin Li        cc: [
42*bda690e4SXin Li            "[email protected]",
43*bda690e4SXin Li        ],
44*bda690e4SXin Li        componentid: 155276,
45*bda690e4SXin Li        hotlists: [
46*bda690e4SXin Li            "4593311",
47*bda690e4SXin Li        ],
48*bda690e4SXin Li        description: "The fuzzer targets the APIs of libvorbisidec",
49*bda690e4SXin Li        vector: "remote",
50*bda690e4SXin Li        service_privilege: "constrained",
51*bda690e4SXin Li        users: "multi_user",
52*bda690e4SXin Li        fuzzed_code_usage: "shipped",
53*bda690e4SXin Li    },
54*bda690e4SXin Li}
55