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

Unified Diff: media/test/BUILD.gn

Issue 806443002: Enable PipelineIntegrationTests in mojo! (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. All pass! Created 6 years 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: media/test/BUILD.gn
diff --git a/media/test/BUILD.gn b/media/test/BUILD.gn
index 2ce266bf48feee83fa35af8336db732e9e3767e7..63ebefcc7929934ce75dfa29cf389c8f8ed244c9 100644
--- a/media/test/BUILD.gn
+++ b/media/test/BUILD.gn
@@ -71,3 +71,39 @@ source_set("pipeline_integration_perftests") {
]
}
}
+
+source_set("mojo_pipeline_integration_tests") {
+ testonly = true
+
+ if (media_use_ffmpeg) {
+ sources = [
+ "pipeline_integration_test.cc",
+ ]
+
+ defines = [ "MOJO_RENDERER" ]
+
+ deps = [
+ ":pipeline_integration_test_base",
+ "//base",
+ "//base/test:test_support",
+ "//media",
+ "//media:test_support",
+ "//media/audio:test_support",
+ "//media/base:test_support",
+ "//media/mojo/interfaces",
+ "//media/mojo/services:media",
+ "//media/mojo/services:renderer_proxy",
+ "//media/mojo/services:renderer_service",
+ "//mojo/application",
+ "//mojo/application:test_support",
+ "//testing/gtest",
+ "//ui/gfx/geometry",
+ "//ui/gfx:test_support",
+
+ # 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",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698