OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
7 | 7 |
8 proto_library("media_remoting_proto") { | 8 proto_library("media_remoting_proto") { |
9 proto_out_dir = "media/remoting" | 9 proto_out_dir = "media/remoting" |
10 sources = [ | 10 sources = [ |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "//mojo/public/cpp/bindings", | 69 "//mojo/public/cpp/bindings", |
70 "//ui/gfx", | 70 "//ui/gfx", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 source_set("media_remoting_tests") { | 74 source_set("media_remoting_tests") { |
75 testonly = true | 75 testonly = true |
76 sources = [ | 76 sources = [ |
77 "courier_renderer_unittest.cc", | 77 "courier_renderer_unittest.cc", |
78 "demuxer_stream_adapter_unittest.cc", | 78 "demuxer_stream_adapter_unittest.cc", |
| 79 "end2end_test_renderer.cc", |
| 80 "end2end_test_renderer.h", |
79 "fake_media_resource.cc", | 81 "fake_media_resource.cc", |
80 "fake_media_resource.h", | 82 "fake_media_resource.h", |
81 "fake_remoter.cc", | 83 "fake_remoter.cc", |
82 "fake_remoter.h", | 84 "fake_remoter.h", |
| 85 "integration_test.cc", |
83 "proto_utils_unittest.cc", | 86 "proto_utils_unittest.cc", |
| 87 "receiver.cc", |
| 88 "receiver.h", |
84 "renderer_controller_unittest.cc", | 89 "renderer_controller_unittest.cc", |
85 "rpc_broker_unittest.cc", | 90 "rpc_broker_unittest.cc", |
| 91 "stream_provider.cc", |
| 92 "stream_provider.h", |
86 ] | 93 ] |
87 | 94 |
88 deps = [ | 95 deps = [ |
89 ":remoting", | 96 ":remoting", |
90 ":rpc", | 97 ":rpc", |
91 "//base", | 98 "//base", |
92 "//base/test:test_support", | 99 "//base/test:test_support", |
93 "//media", | 100 "//media", |
94 "//media/base:test_support", | 101 "//media/base:test_support", |
95 "//media/mojo/interfaces:remoting", | 102 "//media/mojo/interfaces:remoting", |
| 103 "//media/test:pipeline_integration_test_base", |
96 "//testing/gmock", | 104 "//testing/gmock", |
97 "//testing/gtest", | 105 "//testing/gtest", |
98 "//ui/gfx:test_support", | 106 "//ui/gfx:test_support", |
99 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
100 "//url", | 108 "//url", |
101 ] | 109 ] |
102 } | 110 } |
103 | 111 |
104 test("media_remoting_unittests") { | 112 test("media_remoting_unittests") { |
105 deps = [ | 113 deps = [ |
106 ":media_remoting_tests", | 114 ":media_remoting_tests", |
107 "//media/test:run_all_unittests", | 115 "//media/test:run_all_unittests", |
108 ] | 116 ] |
109 } | 117 } |
OLD | NEW |