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

Unified Diff: media/test/BUILD.gn

Issue 1757603002: media: Add media pipeline fuzzer test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 4 years, 10 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 | media/test/pipeline_integration_fuzzertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/BUILD.gn
diff --git a/media/test/BUILD.gn b/media/test/BUILD.gn
index 21749a9e8a848cd7b13263f0f52c418700fdaaf2..9ff13814f8656764b52d9a6f42ca6e42fc822b75 100644
--- a/media/test/BUILD.gn
+++ b/media/test/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//media/media_options.gni")
+import("//testing/libfuzzer/fuzzer_test.gni")
source_set("pipeline_integration_test_base") {
testonly = true
@@ -113,3 +114,20 @@ source_set("mojo_pipeline_integration_tests") {
]
}
}
+
+fuzzer_test("pipeline_integration_fuzzertest") {
+ sources = [
+ "pipeline_integration_fuzzertest.cc",
+ ]
+ deps = [
+ "//base",
+ "//media",
+ "//media/test:pipeline_integration_test_base",
+
+ # TODO(dalecurtis): Required since the gmock header is included in the
+ # header for pipeline_integration_test_base.h. This should be
+ # moved into the .cc file to avoid the extra dependency here.
+ "//testing/gmock",
+ "//ui/gfx:test_support",
+ ]
+}
« no previous file with comments | « no previous file | media/test/pipeline_integration_fuzzertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698