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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fuzzers/BUILD.gn
diff --git a/webrtc/test/fuzzers/BUILD.gn b/webrtc/test/fuzzers/BUILD.gn
index c184452f45a44be182e0a0ac1145ce878f1d7f68..cab24837317ca21ef6575d16728ebba74d349164 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -112,13 +112,18 @@ 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",
]
}
@@ -271,15 +276,21 @@ 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",
]
« 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