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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "offscreen_presentation_manager.cc", | 49 "offscreen_presentation_manager.cc", |
50 "offscreen_presentation_manager.h", | 50 "offscreen_presentation_manager.h", |
51 "offscreen_presentation_manager_factory.cc", | 51 "offscreen_presentation_manager_factory.cc", |
52 "offscreen_presentation_manager_factory.h", | 52 "offscreen_presentation_manager_factory.h", |
53 "presentation_media_sinks_observer.cc", | 53 "presentation_media_sinks_observer.cc", |
54 "presentation_media_sinks_observer.h", | 54 "presentation_media_sinks_observer.h", |
55 "presentation_request.cc", | 55 "presentation_request.cc", |
56 "presentation_request.h", | 56 "presentation_request.h", |
57 "presentation_service_delegate_impl.cc", | 57 "presentation_service_delegate_impl.cc", |
58 "presentation_service_delegate_impl.h", | 58 "presentation_service_delegate_impl.h", |
| 59 "receiver_presentation_service_delegate_impl.cc", |
| 60 "receiver_presentation_service_delegate_impl.h", |
59 "render_frame_host_id.h", | 61 "render_frame_host_id.h", |
60 "route_message.cc", | 62 "route_message.cc", |
61 "route_message.h", | 63 "route_message.h", |
62 "route_message_observer.cc", | 64 "route_message_observer.cc", |
63 "route_message_observer.h", | 65 "route_message_observer.h", |
64 "route_request_result.cc", | 66 "route_request_result.cc", |
65 "route_request_result.h", | 67 "route_request_result.h", |
66 ] | 68 ] |
67 | 69 |
68 if (!is_android) { | 70 if (!is_android) { |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 deps += [ | 122 deps += [ |
121 ":mojo_bindings", | 123 ":mojo_bindings", |
122 "//extensions/common", | 124 "//extensions/common", |
123 ] | 125 ] |
124 sources += [ | 126 sources += [ |
125 "mojo/media_router_mojo_test.cc", | 127 "mojo/media_router_mojo_test.cc", |
126 "mojo/media_router_mojo_test.h", | 128 "mojo/media_router_mojo_test.h", |
127 ] | 129 ] |
128 } | 130 } |
129 } | 131 } |
OLD | NEW |