| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 webrtc_fuzzer_test("rtp_packet_fuzzer") { | 92 webrtc_fuzzer_test("rtp_packet_fuzzer") { |
| 93 sources = [ | 93 sources = [ |
| 94 "rtp_packet_fuzzer.cc", | 94 "rtp_packet_fuzzer.cc", |
| 95 ] | 95 ] |
| 96 deps = [ | 96 deps = [ |
| 97 "../../modules/rtp_rtcp/", | 97 "../../modules/rtp_rtcp/", |
| 98 ] | 98 ] |
| 99 seed_corpus = "corpora/rtp-corpus" | 99 seed_corpus = "corpora/rtp-corpus" |
| 100 } | 100 } |
| 101 | 101 |
| 102 webrtc_fuzzer_test("rtp_header_fuzzer") { |
| 103 sources = [ |
| 104 "rtp_header_fuzzer.cc", |
| 105 ] |
| 106 deps = [ |
| 107 "../../modules/rtp_rtcp/", |
| 108 ] |
| 109 } |
| 110 |
| 102 source_set("audio_decoder_fuzzer") { | 111 source_set("audio_decoder_fuzzer") { |
| 103 public_configs = [ "../..:common_inherited_config" ] | 112 public_configs = [ "../..:common_inherited_config" ] |
| 104 sources = [ | 113 sources = [ |
| 105 "audio_decoder_fuzzer.cc", | 114 "audio_decoder_fuzzer.cc", |
| 106 "audio_decoder_fuzzer.h", | 115 "audio_decoder_fuzzer.h", |
| 107 ] | 116 ] |
| 108 } | 117 } |
| 109 | 118 |
| 110 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 119 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
| 111 sources = [ | 120 sources = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 | 168 |
| 160 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { | 169 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
| 161 sources = [ | 170 sources = [ |
| 162 "audio_decoder_opus_redundant_fuzzer.cc", | 171 "audio_decoder_opus_redundant_fuzzer.cc", |
| 163 ] | 172 ] |
| 164 deps = [ | 173 deps = [ |
| 165 ":audio_decoder_fuzzer", | 174 ":audio_decoder_fuzzer", |
| 166 "../../modules/audio_coding:webrtc_opus", | 175 "../../modules/audio_coding:webrtc_opus", |
| 167 ] | 176 ] |
| 168 } | 177 } |
| OLD | NEW |