Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | cc_defaults { |
| 16 | name: "trusty_fuzzer_defaults", |
Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 17 | shared_libs: [ |
Tri Vo | a67840f | 2020-11-01 13:03:29 -0800 | [diff] [blame^] | 18 | "libtrusty_coverage", |
Tri Vo | 90c0e83 | 2020-11-18 16:17:09 -0800 | [diff] [blame] | 19 | "libtrusty_fuzz_utils", |
Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 20 | "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 | |
| 33 | cc_library { |
| 34 | name: "libtrusty_fuzz_utils", |
Tri Vo | a67840f | 2020-11-01 13:03:29 -0800 | [diff] [blame^] | 35 | srcs: [ |
| 36 | "counters.cpp", |
| 37 | "utils.cpp", |
| 38 | ], |
Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 39 | export_include_dirs: ["include"], |
Tri Vo | a67840f | 2020-11-01 13:03:29 -0800 | [diff] [blame^] | 40 | static_libs: [ |
| 41 | "libFuzzer", |
| 42 | ], |
Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 43 | shared_libs: [ |
Tri Vo | a67840f | 2020-11-01 13:03:29 -0800 | [diff] [blame^] | 44 | "libtrusty_coverage", |
Tri Vo | 90c0e83 | 2020-11-18 16:17:09 -0800 | [diff] [blame] | 45 | "libtrusty_test", |
Tri Vo | e8823ff | 2020-10-13 21:59:07 -0700 | [diff] [blame] | 46 | "libbase", |
| 47 | "liblog", |
| 48 | ], |
| 49 | } |