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

Unified Diff: webrtc/test/fuzzers/BUILD.gn

Issue 2126463002: Add fuzzer for TURN unwrap. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Disable in Chromium. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/test/fuzzers/turn_unwrap_fuzzer.cc » ('j') | 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 c1b9ed9985b4adb6f2b8cc36b550b6c21cc8a14b..9179d05cc50f0e76c4a94f161d3a9a8e8f29e576 100644
--- a/webrtc/test/fuzzers/BUILD.gn
+++ b/webrtc/test/fuzzers/BUILD.gn
@@ -7,8 +7,9 @@
# be found in the AUTHORS file in the root of the source tree.
import("//build/config/features.gni")
-import("//testing/test.gni")
+import("//build_overrides/webrtc.gni")
import("//testing/libfuzzer/fuzzer_test.gni")
+import("//testing/test.gni")
static_library("webrtc_fuzzer_main") {
public_configs = [ "../..:common_inherited_config" ]
@@ -175,3 +176,17 @@ webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
"../../modules/audio_coding:webrtc_opus",
]
}
+
+# TODO(katrielc) Enable in Chromium when CL 2022833002 lands.
+# Although the dependency on media compiles in standalone, it is
+# flagged by gn check, so breaks when rolled into Chromium.
+if (!build_with_chromium) {
+ webrtc_fuzzer_test("turn_unwrap_fuzzer") {
+ sources = [
+ "turn_unwrap_fuzzer.cc",
+ ]
+ deps = [
+ "../../media:media",
+ ]
+ }
+}
« no previous file with comments | « no previous file | webrtc/test/fuzzers/turn_unwrap_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698