Revert of Removing test deps in webrtc/test/fuzzers (patchset #1 id:1 of https://codereview.webrtc.org/2840523003/ )

Reason for revert:
Breaks libfuzzer bot - you forgot to run that one :P

https://build.chromium.org/p/client.webrtc/builders/Linux64%20Release%20%28Libfuzzer%29/builds/5571

Original issue's description:
> Removing test deps in webrtc/test/fuzzers
>
> Targets in webrtc/test/fuzzers are used in chromium which includes WebRTC
> with rtc_include_tests=false.
>
> We enabled 'gn check' on the webrtc/test directory and we have detected
> that some dependencies were not tracked. These dependencies are on test
> targets so we cannot add them in the dep list because this causes a
> breakage in chromium.
>
> BUG=webrtc:7515
> NOTRY=True
>
> Review-Url: https://codereview.webrtc.org/2840523003
> Cr-Commit-Position: refs/heads/master@{#17844}
> Committed: 14b86d3864

TBR=mbonadei@webrtc.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=webrtc:7515

Review-Url: https://codereview.webrtc.org/2835263002
Cr-Commit-Position: refs/heads/master@{#17846}
This commit is contained in:
kjellander
2017-04-24 11:31:17 -07:00
committed by Commit bot
parent 246ef3ea0e
commit d8868637ee

View File

@ -112,18 +112,13 @@ webrtc_fuzzer_test("ulpfec_header_reader_fuzzer") {
}
webrtc_fuzzer_test("ulpfec_generator_fuzzer") {
check_includes = false # TODO(mbonadei): see bugs.webrtc.org/7515
sources = [
"ulpfec_generator_fuzzer.cc",
]
deps = [
# Removing rtp_rtcp_unittests from the dep list because it causes problems
# in chromium (chromium has rtc_include_tests set to false so these targets
# does not exist).
"../../base:rtc_base_approved",
"../../modules/rtp_rtcp",
# "../../modules/rtp_rtcp:rtp_rtcp_unittests",
"../../modules/rtp_rtcp:rtp_rtcp_unittests",
]
}
@ -276,21 +271,15 @@ webrtc_fuzzer_test("turn_unwrap_fuzzer") {
}
webrtc_fuzzer_test("neteq_rtp_fuzzer") {
check_includes = false # TODO(mbonadei): see bugs.webrtc.org/7515
sources = [
"neteq_rtp_fuzzer.cc",
]
deps = [
# Removing rtc_base_tests_utils and neteq_unittest_tools from the dep list
# because they cause problems in chromium (chromium has rtc_include_tests
# set to false so these targets does not exist).
"../../base:rtc_base_approved",
# "../../base:rtc_base_tests_utils",
"../../base:rtc_base_tests_utils",
"../../modules/audio_coding:neteq",
"../../modules/audio_coding:neteq_test_minimal",
# "../../modules/audio_coding:neteq_unittest_tools",
"../../modules/audio_coding:neteq_unittest_tools",
"../../modules/audio_coding:pcm16b",
"../../modules/rtp_rtcp",
]