blob: 22d834dda052f013f9c68cb8edc875bc8df68567 [file] [log] [blame]
Tri Voe8823ff2020-10-13 21:59:07 -07001// Copyright (C) 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15cc_defaults {
16 name: "trusty_fuzzer_defaults",
Tri Voe8823ff2020-10-13 21:59:07 -070017 shared_libs: [
Tri Voa67840f2020-11-01 13:03:29 -080018 "libtrusty_coverage",
Tri Vo90c0e832020-11-18 16:17:09 -080019 "libtrusty_fuzz_utils",
Tri Voe8823ff2020-10-13 21:59:07 -070020 "libbase",
21 "liblog",
22 ],
23 cflags: [
24 "-Wall",
25 "-Werror",
26 ],
27 fuzz_config: {
28 fuzz_on_haiku_device: false,
29 fuzz_on_haiku_host: false,
30 },
31}
32
33cc_library {
34 name: "libtrusty_fuzz_utils",
Tri Voa67840f2020-11-01 13:03:29 -080035 srcs: [
36 "counters.cpp",
37 "utils.cpp",
38 ],
Tri Voe8823ff2020-10-13 21:59:07 -070039 export_include_dirs: ["include"],
Tri Voa67840f2020-11-01 13:03:29 -080040 static_libs: [
41 "libFuzzer",
42 ],
Tri Voe8823ff2020-10-13 21:59:07 -070043 shared_libs: [
Tri Voa67840f2020-11-01 13:03:29 -080044 "libtrusty_coverage",
Tri Vo90c0e832020-11-18 16:17:09 -080045 "libtrusty_test",
Tri Voe8823ff2020-10-13 21:59:07 -070046 "libbase",
47 "liblog",
48 ],
49}