Chromium Code Reviews| 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", |
| + ] |
| +} |