Mufaddal Chakera | 3fde870 | 2020-11-18 14:08:12 +0530 | [diff] [blame^] | 1 | /****************************************************************************** |
| 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 | |
| 21 | cc_fuzz { |
| 22 | name: "oboeservice_fuzzer", |
| 23 | srcs: [ |
| 24 | "oboeservice_fuzzer.cpp", |
| 25 | ], |
| 26 | shared_libs: [ |
| 27 | "libaaudio_internal", |
| 28 | "libaudioclient", |
| 29 | "libaudioflinger", |
| 30 | "libaudioutils", |
| 31 | "libmedia_helper", |
| 32 | "libmediametrics", |
| 33 | "libmediautils", |
| 34 | "libbase", |
| 35 | "libbinder", |
| 36 | "libcutils", |
| 37 | "liblog", |
| 38 | "libutils", |
| 39 | "aaudio-aidl-cpp", |
| 40 | ], |
| 41 | static_libs: [ |
| 42 | "libaaudioservice", |
| 43 | ], |
| 44 | include_dirs: [ |
| 45 | "frameworks/av/services/oboeservice", |
| 46 | ], |
| 47 | header_libs: [ |
| 48 | "libaudiohal_headers", |
| 49 | ], |
| 50 | cflags: [ |
| 51 | "-Wall", |
| 52 | "-Werror", |
| 53 | "-Wno-unused-parameter", |
| 54 | ], |
| 55 | fuzz_config: { |
| 56 | cc: [ |
| 57 | "android-media-fuzzing-reports@google.com", |
| 58 | ], |
| 59 | componentid: 155276, |
| 60 | }, |
| 61 | } |