OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 | 5 |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 static_library("router") { | 9 static_library("router") { |
10 deps = [ | 10 deps = [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "offscreen_presentation_manager.cc", | 50 "offscreen_presentation_manager.cc", |
51 "offscreen_presentation_manager.h", | 51 "offscreen_presentation_manager.h", |
52 "offscreen_presentation_manager_factory.cc", | 52 "offscreen_presentation_manager_factory.cc", |
53 "offscreen_presentation_manager_factory.h", | 53 "offscreen_presentation_manager_factory.h", |
54 "presentation_media_sinks_observer.cc", | 54 "presentation_media_sinks_observer.cc", |
55 "presentation_media_sinks_observer.h", | 55 "presentation_media_sinks_observer.h", |
56 "presentation_request.cc", | 56 "presentation_request.cc", |
57 "presentation_request.h", | 57 "presentation_request.h", |
58 "presentation_service_delegate_impl.cc", | 58 "presentation_service_delegate_impl.cc", |
59 "presentation_service_delegate_impl.h", | 59 "presentation_service_delegate_impl.h", |
| 60 "presentation_service_delegate_observers.cc", |
| 61 "presentation_service_delegate_observers.h", |
| 62 "receiver_presentation_service_delegate_impl.cc", |
| 63 "receiver_presentation_service_delegate_impl.h", |
60 "render_frame_host_id.h", | 64 "render_frame_host_id.h", |
61 "route_message.cc", | 65 "route_message.cc", |
62 "route_message.h", | 66 "route_message.h", |
63 "route_message_observer.cc", | 67 "route_message_observer.cc", |
64 "route_message_observer.h", | 68 "route_message_observer.h", |
65 "route_request_result.cc", | 69 "route_request_result.cc", |
66 "route_request_result.h", | 70 "route_request_result.h", |
67 ] | 71 ] |
68 | 72 |
69 if (!is_android) { | 73 if (!is_android) { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 deps += [ | 125 deps += [ |
122 ":mojo_bindings", | 126 ":mojo_bindings", |
123 "//extensions/common", | 127 "//extensions/common", |
124 ] | 128 ] |
125 sources += [ | 129 sources += [ |
126 "mojo/media_router_mojo_test.cc", | 130 "mojo/media_router_mojo_test.cc", |
127 "mojo/media_router_mojo_test.h", | 131 "mojo/media_router_mojo_test.h", |
128 ] | 132 ] |
129 } | 133 } |
130 } | 134 } |
OLD | NEW |