| 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",
|
| + ]
|
| + }
|
| + }
|
| +}
|
|
|