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 16 matching lines...) Expand all Loading... |
27 "//media", | 27 "//media", |
28 ] | 28 ] |
29 | 29 |
30 public_deps = [ | 30 public_deps = [ |
31 ":media_remoting_proto", | 31 ":media_remoting_proto", |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 source_set("remoting") { | 35 source_set("remoting") { |
36 sources = [ | 36 sources = [ |
| 37 "metrics.cc", |
| 38 "metrics.h", |
37 "remote_demuxer_stream_adapter.cc", | 39 "remote_demuxer_stream_adapter.cc", |
38 "remote_demuxer_stream_adapter.h", | 40 "remote_demuxer_stream_adapter.h", |
39 "remote_renderer_impl.cc", | 41 "remote_renderer_impl.cc", |
40 "remote_renderer_impl.h", | 42 "remote_renderer_impl.h", |
41 "remoting_cdm.cc", | 43 "remoting_cdm.cc", |
42 "remoting_cdm.h", | 44 "remoting_cdm.h", |
43 "remoting_cdm_context.cc", | 45 "remoting_cdm_context.cc", |
44 "remoting_cdm_context.h", | 46 "remoting_cdm_context.h", |
45 "remoting_cdm_controller.cc", | 47 "remoting_cdm_controller.cc", |
46 "remoting_cdm_controller.h", | 48 "remoting_cdm_controller.h", |
47 "remoting_cdm_factory.cc", | 49 "remoting_cdm_factory.cc", |
48 "remoting_cdm_factory.h", | 50 "remoting_cdm_factory.h", |
49 "remoting_interstitial_ui.cc", | 51 "remoting_interstitial_ui.cc", |
50 "remoting_interstitial_ui.h", | 52 "remoting_interstitial_ui.h", |
51 "remoting_renderer_controller.cc", | 53 "remoting_renderer_controller.cc", |
52 "remoting_renderer_controller.h", | 54 "remoting_renderer_controller.h", |
53 "remoting_renderer_factory.cc", | 55 "remoting_renderer_factory.cc", |
54 "remoting_renderer_factory.h", | 56 "remoting_renderer_factory.h", |
55 "remoting_sink_observer.cc", | 57 "remoting_sink_observer.cc", |
56 "remoting_sink_observer.h", | 58 "remoting_sink_observer.h", |
57 "remoting_source_impl.cc", | 59 "remoting_source_impl.cc", |
58 "remoting_source_impl.h", | 60 "remoting_source_impl.h", |
| 61 "triggers.h", |
59 ] | 62 ] |
60 deps = [ | 63 deps = [ |
61 ":rpc", | 64 ":rpc", |
62 "//base", | 65 "//base", |
63 "//media", | 66 "//media", |
64 "//media/mojo/interfaces:remoting", | 67 "//media/mojo/interfaces:remoting", |
65 "//mojo/public/cpp/bindings", | 68 "//mojo/public/cpp/bindings", |
66 "//skia", | 69 "//skia", |
67 "//ui/gfx", | 70 "//ui/gfx", |
68 ] | 71 ] |
(...skipping 28 matching lines...) Expand all Loading... |
97 "//url", | 100 "//url", |
98 ] | 101 ] |
99 } | 102 } |
100 | 103 |
101 test("media_remoting_unittests") { | 104 test("media_remoting_unittests") { |
102 deps = [ | 105 deps = [ |
103 ":media_remoting_tests", | 106 ":media_remoting_tests", |
104 "//media/test:run_all_unittests", | 107 "//media/test:run_all_unittests", |
105 ] | 108 ] |
106 } | 109 } |
OLD | NEW |