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

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

Issue 2840523003: Removing test deps in webrtc/test/fuzzers (Closed)
Patch Set: Created 3 years, 8 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
115 sources = [ 116 sources = [
116 "ulpfec_generator_fuzzer.cc", 117 "ulpfec_generator_fuzzer.cc",
117 ] 118 ]
118 deps = [ 119 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).
119 "../../base:rtc_base_approved", 123 "../../base:rtc_base_approved",
120 "../../modules/rtp_rtcp", 124 "../../modules/rtp_rtcp",
121 "../../modules/rtp_rtcp:rtp_rtcp_unittests", 125
126 # "../../modules/rtp_rtcp:rtp_rtcp_unittests",
122 ] 127 ]
123 } 128 }
124 129
125 webrtc_fuzzer_test("flexfec_receiver_fuzzer") { 130 webrtc_fuzzer_test("flexfec_receiver_fuzzer") {
126 sources = [ 131 sources = [
127 "flexfec_receiver_fuzzer.cc", 132 "flexfec_receiver_fuzzer.cc",
128 ] 133 ]
129 deps = [ 134 deps = [
130 "../../base:rtc_base_approved", 135 "../../base:rtc_base_approved",
131 "../../modules/rtp_rtcp", 136 "../../modules/rtp_rtcp",
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 webrtc_fuzzer_test("turn_unwrap_fuzzer") { 269 webrtc_fuzzer_test("turn_unwrap_fuzzer") {
265 sources = [ 270 sources = [
266 "turn_unwrap_fuzzer.cc", 271 "turn_unwrap_fuzzer.cc",
267 ] 272 ]
268 deps = [ 273 deps = [
269 "../../media:media", 274 "../../media:media",
270 ] 275 ]
271 } 276 }
272 277
273 webrtc_fuzzer_test("neteq_rtp_fuzzer") { 278 webrtc_fuzzer_test("neteq_rtp_fuzzer") {
279 check_includes = false # TODO(mbonadei): see bugs.webrtc.org/7515
274 sources = [ 280 sources = [
275 "neteq_rtp_fuzzer.cc", 281 "neteq_rtp_fuzzer.cc",
276 ] 282 ]
277 deps = [ 283 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).
278 "../../base:rtc_base_approved", 287 "../../base:rtc_base_approved",
279 "../../base:rtc_base_tests_utils", 288
289 # "../../base:rtc_base_tests_utils",
280 "../../modules/audio_coding:neteq", 290 "../../modules/audio_coding:neteq",
281 "../../modules/audio_coding:neteq_test_minimal", 291 "../../modules/audio_coding:neteq_test_minimal",
282 "../../modules/audio_coding:neteq_unittest_tools", 292
293 # "../../modules/audio_coding:neteq_unittest_tools",
283 "../../modules/audio_coding:pcm16b", 294 "../../modules/audio_coding:pcm16b",
284 "../../modules/rtp_rtcp", 295 "../../modules/rtp_rtcp",
285 ] 296 ]
286 } 297 }
287 298
288 webrtc_fuzzer_test("sdp_parser_fuzzer") { 299 webrtc_fuzzer_test("sdp_parser_fuzzer") {
289 sources = [ 300 sources = [
290 "sdp_parser_fuzzer.cc", 301 "sdp_parser_fuzzer.cc",
291 ] 302 ]
292 deps = [ 303 deps = [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
330 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { 341 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") {
331 sources = [ 342 sources = [
332 "transport_feedback_packet_loss_tracker_fuzzer.cc", 343 "transport_feedback_packet_loss_tracker_fuzzer.cc",
333 ] 344 ]
334 deps = [ 345 deps = [
335 "../../base:rtc_base_approved", 346 "../../base:rtc_base_approved",
336 "../../modules/rtp_rtcp", 347 "../../modules/rtp_rtcp",
337 "../../voice_engine", 348 "../../voice_engine",
338 ] 349 ]
339 } 350 }
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