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

Unified Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1757603002: media: Add media pipeline fuzzer test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only 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
Index: testing/libfuzzer/fuzzers/BUILD.gn
diff --git a/testing/libfuzzer/fuzzers/BUILD.gn b/testing/libfuzzer/fuzzers/BUILD.gn
index f53e90082ca5c7e6eb5ec74db40e4b804c54d7ca..efde5dfff7630c681dc2418d0651fb011eea5fbe 100644
--- a/testing/libfuzzer/fuzzers/BUILD.gn
+++ b/testing/libfuzzer/fuzzers/BUILD.gn
@@ -81,6 +81,23 @@ fuzzer_test("language_detection_fuzzer") {
]
}
+fuzzer_test("media_pipeline_fuzzer") {
+ sources = [
+ "media_pipeline_fuzzer.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",
xhwang 2016/03/02 00:57:04 Dale: Without //ui/gfx:test_support, I am getting
+ ]
+}
+
if (proprietary_codecs) {
fuzzer_test("mp4_box_reader_fuzzer") {
sources = [
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/media_pipeline_fuzzer.cc » ('j') | testing/libfuzzer/fuzzers/media_pipeline_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698