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", | |
85 "fake_media_resource.cc", | 83 "fake_media_resource.cc", |
86 "fake_media_resource.h", | 84 "fake_media_resource.h", |
87 "fake_remoter.cc", | 85 "fake_remoter.cc", |
88 "fake_remoter.h", | 86 "fake_remoter.h", |
89 "proto_utils_unittest.cc", | 87 "proto_utils_unittest.cc", |
90 "receiver.cc", | |
91 "receiver.h", | |
92 "renderer_controller_unittest.cc", | 88 "renderer_controller_unittest.cc", |
93 "rpc_broker_unittest.cc", | 89 "rpc_broker_unittest.cc", |
94 "stream_provider.cc", | |
95 "stream_provider.h", | |
96 ] | 90 ] |
97 | 91 |
98 deps = [ | 92 deps = [ |
99 ":remoting", | 93 ":remoting", |
100 ":rpc", | 94 ":rpc", |
101 "//base", | 95 "//base", |
102 "//base/test:test_support", | 96 "//base/test:test_support", |
103 "//media", | 97 "//media", |
104 "//media/base:test_support", | 98 "//media/base:test_support", |
105 "//media/mojo/interfaces:remoting", | 99 "//media/mojo/interfaces:remoting", |
106 "//testing/gmock", | 100 "//testing/gmock", |
107 "//testing/gtest", | 101 "//testing/gtest", |
108 "//ui/gfx:test_support", | 102 "//ui/gfx:test_support", |
109 "//ui/gfx/geometry", | 103 "//ui/gfx/geometry", |
110 "//url", | 104 "//url", |
111 ] | 105 ] |
112 } | 106 } |
113 | 107 |
114 test("media_remoting_unittests") { | 108 test("media_remoting_unittests") { |
115 deps = [ | 109 deps = [ |
116 ":media_remoting_tests", | 110 ":media_remoting_tests", |
117 "//media/test:run_all_unittests", | 111 "//media/test:run_all_unittests", |
118 ] | 112 ] |
119 } | 113 } |
OLD | NEW |