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

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: Fix component build. Created 5 years, 11 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 | « media/mojo/services/media_renderer_apptest.cc ('k') | media/test/DEPS » ('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 2ce266bf48feee83fa35af8336db732e9e3767e7..1337e9e28aabc17330a06110d0a6bdc4aa0d3e92 100644
--- a/media/test/BUILD.gn
+++ b/media/test/BUILD.gn
@@ -71,3 +71,41 @@ source_set("pipeline_integration_perftests") {
]
}
}
+
+if (!is_component_build) {
+ 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",
+ ]
+ }
+ }
+}
« no previous file with comments | « media/mojo/services/media_renderer_apptest.cc ('k') | media/test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698