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

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

Issue 1499093002: Create fuzzer tests for audio decoders (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add a public_configs element to webrtc_fuzzer_main Created 5 years 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
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fuzzers/BUILD.gn
diff --git a/webrtc/test/fuzzers/BUILD.gn b/webrtc/test/fuzzers/BUILD.gn
index 4cf6a5ce9135e78e7092b617d4b7930c190df890..07eea2795e178c2f2ddc6860ac617c2e65c629bb 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -10,6 +10,7 @@ import("//build/config/features.gni")
import("//testing/test.gni")
static_library("webrtc_fuzzer_main") {
+ public_configs = [ "../..:common_inherited_config" ]
hlundin-webrtc 2015/12/08 09:49:17 Had to add this to make it build under Chromium.
sources = [
"webrtc_fuzzer_main.cc",
]
@@ -50,3 +51,53 @@ test("vp8_qp_parser_fuzzer") {
configs -= [ "//build/config/clang:find_bad_constructs" ]
}
}
+
+source_set("audio_decoder_fuzzer") {
+ sources = [
+ "audio_decoder_fuzzer.cc",
+ "audio_decoder_fuzzer.h",
+ ]
+ deps = [
+ ":webrtc_fuzzer_main",
+ ]
+}
+
+test("audio_decoder_ilbc_fuzzer") {
+ sources = [
+ "audio_decoder_ilbc_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:ilbc",
+ ]
+}
+
+test("audio_decoder_isac_fuzzer") {
+ sources = [
+ "audio_decoder_isac_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:isac",
+ ]
+}
+
+test("audio_decoder_isacfix_fuzzer") {
+ sources = [
+ "audio_decoder_isacfix_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:isac_fix",
+ ]
+}
+
+test("audio_decoder_opus_fuzzer") {
+ sources = [
+ "audio_decoder_opus_fuzzer.cc",
+ ]
+ deps = [
+ ":audio_decoder_fuzzer",
+ "../../modules/audio_coding:webrtc_opus",
+ ]
+}
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/test/fuzzers/audio_decoder_fuzzer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698