| 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("webrtc_fuzzer.gni") | 10 import("webrtc_fuzzer.gni") |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 | 77 |
| 78 webrtc_fuzzer_test("rtp_packet_fuzzer") { | 78 webrtc_fuzzer_test("rtp_packet_fuzzer") { |
| 79 sources = [ | 79 sources = [ |
| 80 "rtp_packet_fuzzer.cc", | 80 "rtp_packet_fuzzer.cc", |
| 81 ] | 81 ] |
| 82 deps = [ | 82 deps = [ |
| 83 "../../modules/rtp_rtcp/", | 83 "../../modules/rtp_rtcp/", |
| 84 ] | 84 ] |
| 85 } | 85 } |
| 86 | 86 |
| 87 webrtc_fuzzer_test("sdp_parser_fuzzer") { | |
| 88 sources = [ | |
| 89 "sdp_parser_fuzzer.cc", | |
| 90 ] | |
| 91 deps = [ | |
| 92 "../../api:libjingle_peerconnection", | |
| 93 ] | |
| 94 } | |
| 95 | |
| 96 webrtc_fuzzer_test("stun_parser_fuzzer") { | |
| 97 sources = [ | |
| 98 "stun_parser_fuzzer.cc", | |
| 99 ] | |
| 100 deps = [ | |
| 101 "../../p2p:rtc_p2p", | |
| 102 ] | |
| 103 } | |
| 104 | |
| 105 webrtc_fuzzer_test("stun_validator_fuzzer") { | |
| 106 sources = [ | |
| 107 "stun_validator_fuzzer.cc", | |
| 108 ] | |
| 109 deps = [ | |
| 110 "../../p2p:rtc_p2p", | |
| 111 ] | |
| 112 } | |
| 113 | |
| 114 source_set("audio_decoder_fuzzer") { | 87 source_set("audio_decoder_fuzzer") { |
| 115 public_configs = [ "../..:common_inherited_config" ] | 88 public_configs = [ "../..:common_inherited_config" ] |
| 116 sources = [ | 89 sources = [ |
| 117 "audio_decoder_fuzzer.cc", | 90 "audio_decoder_fuzzer.cc", |
| 118 "audio_decoder_fuzzer.h", | 91 "audio_decoder_fuzzer.h", |
| 119 ] | 92 ] |
| 120 } | 93 } |
| 121 | 94 |
| 122 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { | 95 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { |
| 123 sources = [ | 96 sources = [ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 144 |
| 172 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { | 145 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
| 173 sources = [ | 146 sources = [ |
| 174 "audio_decoder_opus_redundant_fuzzer.cc", | 147 "audio_decoder_opus_redundant_fuzzer.cc", |
| 175 ] | 148 ] |
| 176 deps = [ | 149 deps = [ |
| 177 ":audio_decoder_fuzzer", | 150 ":audio_decoder_fuzzer", |
| 178 "../../modules/audio_coding:webrtc_opus", | 151 "../../modules/audio_coding:webrtc_opus", |
| 179 ] | 152 ] |
| 180 } | 153 } |
| OLD | NEW |