| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "remoting_source_impl.cc", | 57 "remoting_source_impl.cc", |
| 58 "remoting_source_impl.h", | 58 "remoting_source_impl.h", |
| 59 ] | 59 ] |
| 60 deps = [ | 60 deps = [ |
| 61 ":rpc", | 61 ":rpc", |
| 62 "//base", | 62 "//base", |
| 63 "//media", | 63 "//media", |
| 64 "//media/mojo/interfaces:remoting", | 64 "//media/mojo/interfaces:remoting", |
| 65 "//mojo/public/cpp/bindings", | 65 "//mojo/public/cpp/bindings", |
| 66 "//skia", | 66 "//skia", |
| 67 "//ui/gfx", |
| 67 ] | 68 ] |
| 68 } | 69 } |
| 69 | 70 |
| 70 source_set("media_remoting_tests") { | 71 source_set("media_remoting_tests") { |
| 71 testonly = true | 72 testonly = true |
| 72 sources = [ | 73 sources = [ |
| 73 "fake_remoting_controller.cc", | 74 "fake_remoting_controller.cc", |
| 74 "fake_remoting_controller.h", | 75 "fake_remoting_controller.h", |
| 75 "fake_remoting_demuxer_stream_provider.cc", | 76 "fake_remoting_demuxer_stream_provider.cc", |
| 76 "fake_remoting_demuxer_stream_provider.h", | 77 "fake_remoting_demuxer_stream_provider.h", |
| 77 "remote_demuxer_stream_adapter_unittest.cc", | 78 "remote_demuxer_stream_adapter_unittest.cc", |
| 78 "remote_renderer_impl_unittest.cc", | 79 "remote_renderer_impl_unittest.cc", |
| 79 "remoting_renderer_controller_unittest.cc", | 80 "remoting_renderer_controller_unittest.cc", |
| 80 "rpc/proto_utils_unittest.cc", | 81 "rpc/proto_utils_unittest.cc", |
| 81 "rpc/rpc_broker_unittest.cc", | 82 "rpc/rpc_broker_unittest.cc", |
| 82 ] | 83 ] |
| 83 | 84 |
| 84 deps = [ | 85 deps = [ |
| 85 ":remoting", | 86 ":remoting", |
| 86 ":rpc", | 87 ":rpc", |
| 87 "//base", | 88 "//base", |
| 88 "//base/test:test_support", | 89 "//base/test:test_support", |
| 89 "//media", | 90 "//media", |
| 91 "//media/base:test_support", |
| 90 "//media/mojo/interfaces:remoting", | 92 "//media/mojo/interfaces:remoting", |
| 91 "//testing/gmock", | 93 "//testing/gmock", |
| 92 "//testing/gtest", | 94 "//testing/gtest", |
| 93 "//ui/gfx:test_support", | 95 "//ui/gfx:test_support", |
| 94 "//ui/gfx/geometry", | 96 "//ui/gfx/geometry", |
| 95 "//url", | 97 "//url", |
| 96 ] | 98 ] |
| 97 } | 99 } |
| 98 | 100 |
| 99 test("media_remoting_unittests") { | 101 test("media_remoting_unittests") { |
| 100 deps = [ | 102 deps = [ |
| 101 ":media_remoting_tests", | 103 ":media_remoting_tests", |
| 102 "//media/test:run_all_unittests", | 104 "//media/test:run_all_unittests", |
| 103 ] | 105 ] |
| 104 } | 106 } |
| OLD | NEW |