blob: df4c86707d2c769b3095580f0326439287c8a2b0 [file] [log] [blame]
Mufaddal Chakeraab3a6412020-10-22 16:13:32 +05301/******************************************************************************
2 *
3 * Copyright (C) 2020 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *****************************************************************************
18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19 */
20
21cc_fuzz {
22 name: "mediametrics_service_fuzzer",
23
24 srcs: [
25 "mediametrics_service_fuzzer.cpp",
26 ],
27
28 static_libs: [
29 "libmediametrics",
30 "libmediametricsservice",
31 "libplatformprotos",
32 ],
33
34 shared_libs: [
35 "libbase",
36 "libbinder",
37 "libcutils",
38 "liblog",
39 "libmedia_helper",
40 "libmediautils",
41 "libmemunreachable",
42 "libprotobuf-cpp-lite",
43 "libstagefright",
44 "libstatslog",
45 "libutils",
46 ],
47
48 include_dirs: [
49 "frameworks/av/services/mediametrics",
50 "system/media/audio_utils/include",
51 ],
52
53 fuzz_config: {
54 cc: [
55 "android-media-fuzzing-reports@google.com",
56 ],
57 componentid: 155276,
58 },
59}