blob: 5874f8e1495446ed5a5c12fa865f5b5d14f4e27d [file] [log] [blame]
Primiano Tucci02c11762019-08-30 00:57:59 +02001# Copyright (C) 2019 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
15import("perfetto.gni")
16
17perfetto_fuzzers_targets = [
18 "gn:default_deps",
19 "src/ipc:buffered_frame_deserializer_fuzzer",
20 "src/protozero:protozero_decoder_fuzzer",
Primiano Tuccid4b49cb2021-05-13 09:53:46 +010021 "src/protozero/filtering:protozero_bytecode_parser_fuzzer",
Primiano Tucci3f003742021-05-14 19:25:14 +010022 "src/protozero/filtering:protozero_message_filter_fuzzer",
Primiano Tuccic4c063b2020-01-27 09:34:46 +000023 "src/tracing/core:packet_stream_validator_fuzzer",
Primiano Tucci02c11762019-08-30 00:57:59 +020024 "src/trace_processor:trace_processor_fuzzer",
25 "src/traced/probes/ftrace:cpu_reader_fuzzer",
26 "test:end_to_end_shared_memory_fuzzer",
27 "test:producer_socket_fuzzer",
28]
29
30if (enable_perfetto_heapprofd) {
31 perfetto_fuzzers_targets += [
32 "src/profiling/memory:shared_ring_buffer_fuzzer",
33 "src/profiling/memory:shared_ring_buffer_write_fuzzer",
34 "src/profiling/memory:unwinding_fuzzer",
35 ]
36}