| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "presentation_session_messages_observer.h", | 55 "presentation_session_messages_observer.h", |
| 56 "render_frame_host_id.h", | 56 "render_frame_host_id.h", |
| 57 "route_request_result.cc", | 57 "route_request_result.cc", |
| 58 "route_request_result.h", | 58 "route_request_result.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 if (!is_android) { | 61 if (!is_android) { |
| 62 deps += [ | 62 deps += [ |
| 63 ":mojo_bindings", | 63 ":mojo_bindings", |
| 64 "//extensions/browser", | 64 "//extensions/browser", |
| 65 "//media/mojo/interfaces", |
| 65 "//mojo/public/cpp/bindings", | 66 "//mojo/public/cpp/bindings", |
| 66 ] | 67 ] |
| 67 sources += [ | 68 sources += [ |
| 69 "media_remoting_connector.cc", |
| 70 "media_remoting_connector.h", |
| 71 "media_remoting_provider.h", |
| 72 "mojo/media_remoting_session_impl.cc", |
| 73 "mojo/media_remoting_session_impl.h", |
| 68 "mojo/media_route_provider_util_win.cc", | 74 "mojo/media_route_provider_util_win.cc", |
| 69 "mojo/media_route_provider_util_win.h", | 75 "mojo/media_route_provider_util_win.h", |
| 70 "mojo/media_router_mojo_impl.cc", | 76 "mojo/media_router_mojo_impl.cc", |
| 71 "mojo/media_router_mojo_impl.h", | 77 "mojo/media_router_mojo_impl.h", |
| 72 "mojo/media_router_mojo_metrics.cc", | 78 "mojo/media_router_mojo_metrics.cc", |
| 73 "mojo/media_router_mojo_metrics.h", | 79 "mojo/media_router_mojo_metrics.h", |
| 74 "mojo/media_router_type_converters.cc", | 80 "mojo/media_router_type_converters.cc", |
| 75 "mojo/media_router_type_converters.h", | 81 "mojo/media_router_type_converters.h", |
| 76 ] | 82 ] |
| 77 } | 83 } |
| 78 } | 84 } |
| 79 | 85 |
| 80 mojom("mojo_bindings") { | 86 mojom("mojo_bindings") { |
| 81 sources = [ | 87 sources = [ |
| 88 "mojo/media_remoter.mojom", |
| 82 "mojo/media_router.mojom", | 89 "mojo/media_router.mojom", |
| 83 ] | 90 ] |
| 84 | 91 |
| 85 use_new_wrapper_types = false | 92 use_new_wrapper_types = false |
| 86 } | 93 } |
| 87 | 94 |
| 88 static_library("test_support") { | 95 static_library("test_support") { |
| 89 testonly = true | 96 testonly = true |
| 90 deps = [ | 97 deps = [ |
| 91 ":router", | 98 ":router", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 105 deps += [ | 112 deps += [ |
| 106 ":mojo_bindings", | 113 ":mojo_bindings", |
| 107 "//extensions/common", | 114 "//extensions/common", |
| 108 ] | 115 ] |
| 109 sources += [ | 116 sources += [ |
| 110 "mojo/media_router_mojo_test.cc", | 117 "mojo/media_router_mojo_test.cc", |
| 111 "mojo/media_router_mojo_test.h", | 118 "mojo/media_router_mojo_test.h", |
| 112 ] | 119 ] |
| 113 } | 120 } |
| 114 } | 121 } |
| OLD | NEW |