| 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 27 matching lines...) Expand all Loading... |
| 38 "remote_renderer_impl.cc", | 38 "remote_renderer_impl.cc", |
| 39 "remote_renderer_impl.h", | 39 "remote_renderer_impl.h", |
| 40 "remoting_cdm.cc", | 40 "remoting_cdm.cc", |
| 41 "remoting_cdm.h", | 41 "remoting_cdm.h", |
| 42 "remoting_cdm_context.cc", | 42 "remoting_cdm_context.cc", |
| 43 "remoting_cdm_context.h", | 43 "remoting_cdm_context.h", |
| 44 "remoting_cdm_controller.cc", | 44 "remoting_cdm_controller.cc", |
| 45 "remoting_cdm_controller.h", | 45 "remoting_cdm_controller.h", |
| 46 "remoting_cdm_factory.cc", | 46 "remoting_cdm_factory.cc", |
| 47 "remoting_cdm_factory.h", | 47 "remoting_cdm_factory.h", |
| 48 "remoting_interstitial_ui.cc", |
| 49 "remoting_interstitial_ui.h", |
| 48 "remoting_renderer_controller.cc", | 50 "remoting_renderer_controller.cc", |
| 49 "remoting_renderer_controller.h", | 51 "remoting_renderer_controller.h", |
| 50 "remoting_renderer_factory.cc", | 52 "remoting_renderer_factory.cc", |
| 51 "remoting_renderer_factory.h", | 53 "remoting_renderer_factory.h", |
| 52 "remoting_sink_observer.cc", | 54 "remoting_sink_observer.cc", |
| 53 "remoting_sink_observer.h", | 55 "remoting_sink_observer.h", |
| 54 "remoting_source_impl.cc", | 56 "remoting_source_impl.cc", |
| 55 "remoting_source_impl.h", | 57 "remoting_source_impl.h", |
| 56 ] | 58 ] |
| 57 deps = [ | 59 deps = [ |
| 58 ":rpc", | 60 ":rpc", |
| 59 "//base", | 61 "//base", |
| 60 "//media", | 62 "//media", |
| 61 "//media/mojo/interfaces:remoting", | 63 "//media/mojo/interfaces:remoting", |
| 62 "//mojo/public/cpp/bindings", | 64 "//mojo/public/cpp/bindings", |
| 65 "//skia", |
| 63 ] | 66 ] |
| 64 } | 67 } |
| 65 | 68 |
| 66 source_set("media_remoting_tests") { | 69 source_set("media_remoting_tests") { |
| 67 testonly = true | 70 testonly = true |
| 68 sources = [ | 71 sources = [ |
| 69 "fake_remoting_controller.cc", | 72 "fake_remoting_controller.cc", |
| 70 "fake_remoting_controller.h", | 73 "fake_remoting_controller.h", |
| 71 "fake_remoting_demuxer_stream_provider.cc", | 74 "fake_remoting_demuxer_stream_provider.cc", |
| 72 "fake_remoting_demuxer_stream_provider.h", | 75 "fake_remoting_demuxer_stream_provider.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 91 "//url", | 94 "//url", |
| 92 ] | 95 ] |
| 93 } | 96 } |
| 94 | 97 |
| 95 test("media_remoting_unittests") { | 98 test("media_remoting_unittests") { |
| 96 deps = [ | 99 deps = [ |
| 97 ":media_remoting_tests", | 100 ":media_remoting_tests", |
| 98 "//media/test:run_all_unittests", | 101 "//media/test:run_all_unittests", |
| 99 ] | 102 ] |
| 100 } | 103 } |
| OLD | NEW |