blob: 4ebeb287856958bb74d885b911758da1301e3bd0 [file] [log] [blame]
Ayushi Khopkar7c0bcf32021-06-01 10:34:35 +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 */
17cc_library {
18 name: "libbt-vendor-fuzz",
19 vendor: true,
20 srcs: [
21 "bt_vendor.cpp",
22 ],
23 static_libs: [
24 "android.hardware.bluetooth@1.0-impl-test",
25 "android.hardware.bluetooth-hci",
26 ],
27}
28
29cc_fuzz {
30 name: "bluetoothV1.0_fuzzer",
31 vendor: true,
32 srcs: [
33 "bluetoothV1.0_fuzzer.cpp",
34 ],
35 static_libs: [
36 "android.hardware.bluetooth@1.0-impl-test",
37 "android.hardware.bluetooth-async",
38 "android.hardware.bluetooth-hci",
39 "libcutils",
40 "libutils",
41 ],
42 shared_libs: [
43 "android.hardware.bluetooth@1.0",
44 "libhardware",
45 "libhidlbase",
46 "libbt-vendor-fuzz",
47 "liblog",
48 ],
49 fuzz_config: {
50 cc: [
51 "android-media-fuzzing-reports@google.com",
52 ],
53 componentid: 533764,
54 },
55}