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

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

Issue 2157783002: Add a CongestionController fuzzer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: . Created 4 years, 5 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 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("//build_overrides/webrtc.gni") 10 import("//build_overrides/webrtc.gni")
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 webrtc_fuzzer_test("rtp_header_fuzzer") { 103 webrtc_fuzzer_test("rtp_header_fuzzer") {
104 sources = [ 104 sources = [
105 "rtp_header_fuzzer.cc", 105 "rtp_header_fuzzer.cc",
106 ] 106 ]
107 deps = [ 107 deps = [
108 "../../modules/rtp_rtcp/", 108 "../../modules/rtp_rtcp/",
109 ] 109 ]
110 } 110 }
111 111
112 webrtc_fuzzer_test("congestion_controller_fuzzer") {
113 sources = [
114 "congestion_controller_fuzzer.cc",
115 ]
116 deps = [
117 "../../modules/congestion_controller/",
118 "//testing/gmock",
pbos-webrtc 2016/07/18 08:02:52 Can you try to build this in a chromium checkout?
stefan-webrtc 2016/07/18 15:46:56 Removed gmock and gtest
119 "//testing/gtest",
pbos-webrtc 2016/07/18 08:02:52 Does this need gtest?
stefan-webrtc 2016/07/18 15:46:56 Done.
120 ]
121 }
122
112 source_set("audio_decoder_fuzzer") { 123 source_set("audio_decoder_fuzzer") {
113 public_configs = [ "../..:common_inherited_config" ] 124 public_configs = [ "../..:common_inherited_config" ]
114 sources = [ 125 sources = [
115 "audio_decoder_fuzzer.cc", 126 "audio_decoder_fuzzer.cc",
116 "audio_decoder_fuzzer.h", 127 "audio_decoder_fuzzer.h",
117 ] 128 ]
118 } 129 }
119 130
120 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { 131 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") {
121 sources = [ 132 sources = [
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 235
225 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { 236 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") {
226 sources = [ 237 sources = [
227 "pseudotcp_parser_fuzzer.cc", 238 "pseudotcp_parser_fuzzer.cc",
228 ] 239 ]
229 deps = [ 240 deps = [
230 "../../p2p:rtc_p2p", 241 "../../p2p:rtc_p2p",
231 ] 242 ]
232 } 243 }
233 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698