Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(790)

Unified Diff: webrtc/test/fuzzers/BUILD.gn

Issue 1607173003: Fuzzer tests for AudioDecoder's DecodeRedundant and IncomingPacket (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fold normal and redundant fuzzer functions Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/test/fuzzers/BUILD.gn
diff --git a/webrtc/test/fuzzers/BUILD.gn b/webrtc/test/fuzzers/BUILD.gn
index 6a43548ec9982257370855737ef3fab247ae6c8a..6591f6417fcc3037dc412cc909c4f0a026f87b9f 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -94,6 +94,16 @@ webrtc_fuzzer_test("audio_decoder_isac_fuzzer") {
]
}
+webrtc_fuzzer_test("audio_decoder_isac_incoming_packet_fuzzer") {
+ sources = [
+ "audio_decoder_isac_incoming_packet_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:isac",
+ ]
+}
+
webrtc_fuzzer_test("audio_decoder_isacfix_fuzzer") {
sources = [
"audio_decoder_isacfix_fuzzer.cc",
@@ -113,3 +123,13 @@ webrtc_fuzzer_test("audio_decoder_opus_fuzzer") {
"../../modules/audio_coding:webrtc_opus",
]
}
+
+webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
+ sources = [
+ "audio_decoder_opus_redundant_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:webrtc_opus",
+ ]
+}
« no previous file with comments | « no previous file | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('j') | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698