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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 webrtc_fuzzer_test("audio_decoder_isac_fuzzer") { | 87 webrtc_fuzzer_test("audio_decoder_isac_fuzzer") { |
88 sources = [ | 88 sources = [ |
89 "audio_decoder_isac_fuzzer.cc", | 89 "audio_decoder_isac_fuzzer.cc", |
90 ] | 90 ] |
91 deps = [ | 91 deps = [ |
92 ":audio_decoder_fuzzer", | 92 ":audio_decoder_fuzzer", |
93 "../../modules/audio_coding:isac", | 93 "../../modules/audio_coding:isac", |
94 ] | 94 ] |
95 } | 95 } |
96 | 96 |
| 97 webrtc_fuzzer_test("audio_decoder_isac_incoming_packet_fuzzer") { |
| 98 sources = [ |
| 99 "audio_decoder_isac_incoming_packet_fuzzer.cc", |
| 100 ] |
| 101 deps = [ |
| 102 ":audio_decoder_fuzzer", |
| 103 "../../modules/audio_coding:isac", |
| 104 ] |
| 105 } |
| 106 |
97 webrtc_fuzzer_test("audio_decoder_isacfix_fuzzer") { | 107 webrtc_fuzzer_test("audio_decoder_isacfix_fuzzer") { |
98 sources = [ | 108 sources = [ |
99 "audio_decoder_isacfix_fuzzer.cc", | 109 "audio_decoder_isacfix_fuzzer.cc", |
100 ] | 110 ] |
101 deps = [ | 111 deps = [ |
102 ":audio_decoder_fuzzer", | 112 ":audio_decoder_fuzzer", |
103 "../../modules/audio_coding:isac_fix", | 113 "../../modules/audio_coding:isac_fix", |
104 ] | 114 ] |
105 } | 115 } |
106 | 116 |
107 webrtc_fuzzer_test("audio_decoder_opus_fuzzer") { | 117 webrtc_fuzzer_test("audio_decoder_opus_fuzzer") { |
108 sources = [ | 118 sources = [ |
109 "audio_decoder_opus_fuzzer.cc", | 119 "audio_decoder_opus_fuzzer.cc", |
110 ] | 120 ] |
111 deps = [ | 121 deps = [ |
112 ":audio_decoder_fuzzer", | 122 ":audio_decoder_fuzzer", |
113 "../../modules/audio_coding:webrtc_opus", | 123 "../../modules/audio_coding:webrtc_opus", |
114 ] | 124 ] |
115 } | 125 } |
| 126 |
| 127 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { |
| 128 sources = [ |
| 129 "audio_decoder_opus_redundant_fuzzer.cc", |
| 130 ] |
| 131 deps = [ |
| 132 ":audio_decoder_fuzzer", |
| 133 "../../modules/audio_coding:webrtc_opus", |
| 134 ] |
| 135 } |
OLD | NEW |