| 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 21 matching lines...) Expand all Loading... |
| 32 } | 32 } |
| 33 | 33 |
| 34 source_set("remoting") { | 34 source_set("remoting") { |
| 35 sources = [ | 35 sources = [ |
| 36 "remote_demuxer_stream_adapter.cc", | 36 "remote_demuxer_stream_adapter.cc", |
| 37 "remote_demuxer_stream_adapter.h", | 37 "remote_demuxer_stream_adapter.h", |
| 38 "remote_renderer_impl.cc", | 38 "remote_renderer_impl.cc", |
| 39 "remote_renderer_impl.h", | 39 "remote_renderer_impl.h", |
| 40 "remoting_controller.cc", | 40 "remoting_controller.cc", |
| 41 "remoting_controller.h", | 41 "remoting_controller.h", |
| 42 "remoting_interstitial_ui.cc", |
| 43 "remoting_interstitial_ui.h", |
| 42 "remoting_renderer_factory.cc", | 44 "remoting_renderer_factory.cc", |
| 43 "remoting_renderer_factory.h", | 45 "remoting_renderer_factory.h", |
| 44 ] | 46 ] |
| 45 deps = [ | 47 deps = [ |
| 46 ":rpc", | 48 ":rpc", |
| 47 "//base", | 49 "//base", |
| 48 "//media", | 50 "//media", |
| 49 "//media/mojo/interfaces:remoting", | 51 "//media/mojo/interfaces:remoting", |
| 50 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
| 53 "//skia", |
| 51 ] | 54 ] |
| 52 } | 55 } |
| 53 | 56 |
| 54 source_set("media_remoting_tests") { | 57 source_set("media_remoting_tests") { |
| 55 testonly = true | 58 testonly = true |
| 56 sources = [ | 59 sources = [ |
| 57 "fake_remoting_controller.cc", | 60 "fake_remoting_controller.cc", |
| 58 "fake_remoting_controller.h", | 61 "fake_remoting_controller.h", |
| 59 "fake_remoting_demuxer_stream_provider.cc", | 62 "fake_remoting_demuxer_stream_provider.cc", |
| 60 "fake_remoting_demuxer_stream_provider.h", | 63 "fake_remoting_demuxer_stream_provider.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 78 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
| 79 ] | 82 ] |
| 80 } | 83 } |
| 81 | 84 |
| 82 test("media_remoting_unittests") { | 85 test("media_remoting_unittests") { |
| 83 deps = [ | 86 deps = [ |
| 84 ":media_remoting_tests", | 87 ":media_remoting_tests", |
| 85 "//media/test:run_all_unittests", | 88 "//media/test:run_all_unittests", |
| 86 ] | 89 ] |
| 87 } | 90 } |
| OLD | NEW |