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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "//ui/gfx", | 73 "//ui/gfx", |
74 "//ui/vector_icons", | 74 "//ui/vector_icons", |
75 ] | 75 ] |
76 } | 76 } |
77 | 77 |
78 source_set("media_remoting_tests") { | 78 source_set("media_remoting_tests") { |
79 testonly = true | 79 testonly = true |
80 sources = [ | 80 sources = [ |
81 "courier_renderer_unittest.cc", | 81 "courier_renderer_unittest.cc", |
82 "demuxer_stream_adapter_unittest.cc", | 82 "demuxer_stream_adapter_unittest.cc", |
| 83 "end2end_test_renderer.cc", |
| 84 "end2end_test_renderer.h", |
83 "fake_media_resource.cc", | 85 "fake_media_resource.cc", |
84 "fake_media_resource.h", | 86 "fake_media_resource.h", |
85 "fake_remoter.cc", | 87 "fake_remoter.cc", |
86 "fake_remoter.h", | 88 "fake_remoter.h", |
87 "proto_utils_unittest.cc", | 89 "proto_utils_unittest.cc", |
| 90 "receiver.cc", |
| 91 "receiver.h", |
88 "renderer_controller_unittest.cc", | 92 "renderer_controller_unittest.cc", |
89 "rpc_broker_unittest.cc", | 93 "rpc_broker_unittest.cc", |
| 94 "stream_provider.cc", |
| 95 "stream_provider.h", |
90 ] | 96 ] |
91 | 97 |
92 deps = [ | 98 deps = [ |
93 ":remoting", | 99 ":remoting", |
94 ":rpc", | 100 ":rpc", |
95 "//base", | 101 "//base", |
96 "//base/test:test_support", | 102 "//base/test:test_support", |
97 "//media", | 103 "//media", |
98 "//media/base:test_support", | 104 "//media/base:test_support", |
99 "//media/mojo/interfaces:remoting", | 105 "//media/mojo/interfaces:remoting", |
100 "//testing/gmock", | 106 "//testing/gmock", |
101 "//testing/gtest", | 107 "//testing/gtest", |
102 "//ui/gfx:test_support", | 108 "//ui/gfx:test_support", |
103 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
104 "//url", | 110 "//url", |
105 ] | 111 ] |
106 } | 112 } |
107 | 113 |
108 test("media_remoting_unittests") { | 114 test("media_remoting_unittests") { |
109 deps = [ | 115 deps = [ |
110 ":media_remoting_tests", | 116 ":media_remoting_tests", |
111 "//media/test:run_all_unittests", | 117 "//media/test:run_all_unittests", |
112 ] | 118 ] |
113 } | 119 } |
OLD | NEW |