1# 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", 21 "src/protozero/filtering:protozero_bytecode_parser_fuzzer", 22 "src/protozero/filtering:protozero_message_filter_fuzzer", 23 "src/tracing/core:packet_stream_validator_fuzzer", 24 "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} 37