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

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

Issue 2835263002: Revert of Removing test deps in webrtc/test/fuzzers (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 sources = [ 105 sources = [
106 "ulpfec_header_reader_fuzzer.cc", 106 "ulpfec_header_reader_fuzzer.cc",
107 ] 107 ]
108 deps = [ 108 deps = [
109 "../../base:rtc_base_approved", 109 "../../base:rtc_base_approved",
110 "../../modules/rtp_rtcp", 110 "../../modules/rtp_rtcp",
111 ] 111 ]
112 } 112 }
113 113
114 webrtc_fuzzer_test("ulpfec_generator_fuzzer") { 114 webrtc_fuzzer_test("ulpfec_generator_fuzzer") {
115 check_includes = false # TODO(mbonadei): see bugs.webrtc.org/7515
116 sources = [ 115 sources = [
117 "ulpfec_generator_fuzzer.cc", 116 "ulpfec_generator_fuzzer.cc",
118 ] 117 ]
119 deps = [ 118 deps = [
120 # Removing rtp_rtcp_unittests from the dep list because it causes problems
121 # in chromium (chromium has rtc_include_tests set to false so these targets
122 # does not exist).
123 "../../base:rtc_base_approved", 119 "../../base:rtc_base_approved",
124 "../../modules/rtp_rtcp", 120 "../../modules/rtp_rtcp",
125 121 "../../modules/rtp_rtcp:rtp_rtcp_unittests",
126 # "../../modules/rtp_rtcp:rtp_rtcp_unittests",
127 ] 122 ]
128 } 123 }
129 124
130 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { 125 webrtc_fuzzer_test("flexfec_receiver_fuzzer") {
131 sources = [ 126 sources = [
132 "flexfec_receiver_fuzzer.cc", 127 "flexfec_receiver_fuzzer.cc",
133 ] 128 ]
134 deps = [ 129 deps = [
135 "../../base:rtc_base_approved", 130 "../../base:rtc_base_approved",
136 "../../modules/rtp_rtcp", 131 "../../modules/rtp_rtcp",
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 webrtc_fuzzer_test("turn_unwrap_fuzzer") { 264 webrtc_fuzzer_test("turn_unwrap_fuzzer") {
270 sources = [ 265 sources = [
271 "turn_unwrap_fuzzer.cc", 266 "turn_unwrap_fuzzer.cc",
272 ] 267 ]
273 deps = [ 268 deps = [
274 "../../media:media", 269 "../../media:media",
275 ] 270 ]
276 } 271 }
277 272
278 webrtc_fuzzer_test("neteq_rtp_fuzzer") { 273 webrtc_fuzzer_test("neteq_rtp_fuzzer") {
279 check_includes = false # TODO(mbonadei): see bugs.webrtc.org/7515
280 sources = [ 274 sources = [
281 "neteq_rtp_fuzzer.cc", 275 "neteq_rtp_fuzzer.cc",
282 ] 276 ]
283 deps = [ 277 deps = [
284 # Removing rtc_base_tests_utils and neteq_unittest_tools from the dep list
285 # because they cause problems in chromium (chromium has rtc_include_tests
286 # set to false so these targets does not exist).
287 "../../base:rtc_base_approved", 278 "../../base:rtc_base_approved",
288 279 "../../base:rtc_base_tests_utils",
289 # "../../base:rtc_base_tests_utils",
290 "../../modules/audio_coding:neteq", 280 "../../modules/audio_coding:neteq",
291 "../../modules/audio_coding:neteq_test_minimal", 281 "../../modules/audio_coding:neteq_test_minimal",
292 282 "../../modules/audio_coding:neteq_unittest_tools",
293 # "../../modules/audio_coding:neteq_unittest_tools",
294 "../../modules/audio_coding:pcm16b", 283 "../../modules/audio_coding:pcm16b",
295 "../../modules/rtp_rtcp", 284 "../../modules/rtp_rtcp",
296 ] 285 ]
297 } 286 }
298 287
299 webrtc_fuzzer_test("sdp_parser_fuzzer") { 288 webrtc_fuzzer_test("sdp_parser_fuzzer") {
300 sources = [ 289 sources = [
301 "sdp_parser_fuzzer.cc", 290 "sdp_parser_fuzzer.cc",
302 ] 291 ]
303 deps = [ 292 deps = [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { 330 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") {
342 sources = [ 331 sources = [
343 "transport_feedback_packet_loss_tracker_fuzzer.cc", 332 "transport_feedback_packet_loss_tracker_fuzzer.cc",
344 ] 333 ]
345 deps = [ 334 deps = [
346 "../../base:rtc_base_approved", 335 "../../base:rtc_base_approved",
347 "../../modules/rtp_rtcp", 336 "../../modules/rtp_rtcp",
348 "../../voice_engine", 337 "../../voice_engine",
349 ] 338 ]
350 } 339 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698