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

Side by Side Diff: webrtc/test/fuzzers/BUILD.gn

Issue 1522463002: Add FEC producer fuzzing and a unittest for one of the issues found. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Added comment 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 unified diff | Download patch
OLDNEW
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("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "../../modules/video_coding/", 45 "../../modules/video_coding/",
46 ] 46 ]
47 47
48 if (is_clang) { 48 if (is_clang) {
49 # Suppress warnings from Chrome's Clang plugins. 49 # Suppress warnings from Chrome's Clang plugins.
50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 50 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
51 configs -= [ "//build/config/clang:find_bad_constructs" ] 51 configs -= [ "//build/config/clang:find_bad_constructs" ]
52 } 52 }
53 } 53 }
54 54
55 test("producer_fec_fuzzer") {
56 sources = [
57 "producer_fec_fuzzer.cc",
58 ]
59 deps = [
60 ":webrtc_fuzzer_main",
61 "../../modules/rtp_rtcp/",
62 ]
63
64 if (is_clang) {
65 # Suppress warnings from Chrome's Clang plugins.
66 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
67 configs -= [ "//build/config/clang:find_bad_constructs" ]
68 }
69 }
70
55 source_set("audio_decoder_fuzzer") { 71 source_set("audio_decoder_fuzzer") {
56 sources = [ 72 sources = [
57 "audio_decoder_fuzzer.cc", 73 "audio_decoder_fuzzer.cc",
58 "audio_decoder_fuzzer.h", 74 "audio_decoder_fuzzer.h",
59 ] 75 ]
60 deps = [ 76 deps = [
61 ":webrtc_fuzzer_main", 77 ":webrtc_fuzzer_main",
62 ] 78 ]
63 } 79 }
64 80
(...skipping 29 matching lines...) Expand all
94 110
95 test("audio_decoder_opus_fuzzer") { 111 test("audio_decoder_opus_fuzzer") {
96 sources = [ 112 sources = [
97 "audio_decoder_opus_fuzzer.cc", 113 "audio_decoder_opus_fuzzer.cc",
98 ] 114 ]
99 deps = [ 115 deps = [
100 ":audio_decoder_fuzzer", 116 ":audio_decoder_fuzzer",
101 "../../modules/audio_coding:webrtc_opus", 117 "../../modules/audio_coding:webrtc_opus",
102 ] 118 ]
103 } 119 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/source/producer_fec_unittest.cc ('k') | webrtc/test/fuzzers/producer_fec_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698