blob: fcd3bd64ebf4bf7665af2e53056d41af700206f2 [file] [log] [blame]
Ayushi Khopkarce5c0332021-09-20 12:00:21 +05301/*
2 * Copyright (C) 2021 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *
16 */
17
18cc_fuzz {
19 name: "fastboot_fuzzer",
20 host_supported: true,
21 device_supported: false,
22 srcs: [
23 "fastboot_fuzzer.cpp",
24 "socket_mock_fuzz.cpp",
25 ],
26 header_libs: [
27 "bootimg_headers",
28 "fastboot_headers",
29 ],
30 static_libs: [
31 "libext4_utils",
32 "libcrypto",
33 "libfastboot",
34 "libbuildversion",
35 "libbase",
36 "libziparchive",
37 "libsparse",
38 "libutils",
39 "liblog",
40 "libz",
41 "libdiagnose_usb",
42 "libbase",
43 "libcutils",
44 "libgtest",
45 "libgtest_main",
46 "libbase",
47 "libadb_host",
48 "liblp",
49 "liblog",
50 ],
51 fuzz_config: {
52 cc: [
53 "android-media-fuzzing-reports@google.com",
54 ],
55 componentid: 533764,
56 },
57}