Bob Badour | c837504 | 2021-02-12 21:02:31 -0800 | [diff] [blame] | 1 | package { |
| 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 "frameworks_av_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["frameworks_av_license"], |
| 8 | } |
| 9 | |
Sachin Kumar Garg | ec2a22e | 2020-10-26 10:16:58 +0530 | [diff] [blame] | 10 | cc_fuzz { |
| 11 | name: "media_log_fuzzer", |
| 12 | static_libs: [ |
| 13 | "libmedialogservice", |
| 14 | ], |
| 15 | srcs: [ |
| 16 | "media_log_fuzzer.cpp", |
| 17 | ], |
| 18 | header_libs: [ |
| 19 | "libmedia_headers", |
| 20 | ], |
| 21 | shared_libs: [ |
| 22 | "libaudioutils", |
| 23 | "libbinder", |
| 24 | "liblog", |
| 25 | "libmediautils", |
| 26 | "libnblog", |
| 27 | "libutils", |
| 28 | ], |
| 29 | include_dirs: [ |
| 30 | "frameworks/av/services/medialog", |
| 31 | ], |
| 32 | cflags: [ |
| 33 | "-Werror", |
| 34 | "-Wall", |
| 35 | ], |
| 36 | fuzz_config: { |
| 37 | cc: [ |
| 38 | "android-media-fuzzing-reports@google.com", |
| 39 | ], |
| 40 | componentid: 155276, |
| 41 | }, |
| 42 | } |