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