| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 ] | 79 ] |
| 80 } | 80 } |
| 81 | 81 |
| 82 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { | 82 webrtc_fuzzer_test("rtcp_receiver_fuzzer") { |
| 83 sources = [ | 83 sources = [ |
| 84 "rtcp_receiver_fuzzer.cc", | 84 "rtcp_receiver_fuzzer.cc", |
| 85 ] | 85 ] |
| 86 deps = [ | 86 deps = [ |
| 87 "../../modules/rtp_rtcp/", | 87 "../../modules/rtp_rtcp/", |
| 88 ] | 88 ] |
| 89 seed_corpus = "corpora/rtcp-corpus" |
| 89 } | 90 } |
| 90 | 91 |
| 91 webrtc_fuzzer_test("rtp_packet_fuzzer") { | 92 webrtc_fuzzer_test("rtp_packet_fuzzer") { |
| 92 sources = [ | 93 sources = [ |
| 93 "rtp_packet_fuzzer.cc", | 94 "rtp_packet_fuzzer.cc", |
| 94 ] | 95 ] |
| 95 deps = [ | 96 deps = [ |
| 96 "../../modules/rtp_rtcp/", | 97 "../../modules/rtp_rtcp/", |
| 97 ] | 98 ] |
| 99 seed_corpus = "corpora/rtp-corpus" |
| 98 } | 100 } |
| 99 | 101 |
| 100 source_set("audio_decoder_fuzzer") { | 102 source_set("audio_decoder_fuzzer") { |
| 101 public_configs = [ "../..:common_inherited_config" ] | 103 public_configs = [ "../..:common_inherited_config" ] |
| 102 sources = [ | 104 sources = [ |
| 103 "audio_decoder_fuzzer.cc", | 105 "audio_decoder_fuzzer.cc", |
| 104 "audio_decoder_fuzzer.h", | 106 "audio_decoder_fuzzer.h", |
| 105 ] | 107 ] |
| 106 } | 108 } |
| 107 | 109 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 159 |
| 158 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { | 160 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
| 159 sources = [ | 161 sources = [ |
| 160 "audio_decoder_opus_redundant_fuzzer.cc", | 162 "audio_decoder_opus_redundant_fuzzer.cc", |
| 161 ] | 163 ] |
| 162 deps = [ | 164 deps = [ |
| 163 ":audio_decoder_fuzzer", | 165 ":audio_decoder_fuzzer", |
| 164 "../../modules/audio_coding:webrtc_opus", | 166 "../../modules/audio_coding:webrtc_opus", |
| 165 ] | 167 ] |
| 166 } | 168 } |
| OLD | NEW |