| 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "route_message_observer.h", | 64 "route_message_observer.h", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 if (enable_extensions) { | 67 if (enable_extensions) { |
| 68 deps += [ | 68 deps += [ |
| 69 "discovery", | 69 "discovery", |
| 70 "//extensions/browser", | 70 "//extensions/browser", |
| 71 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
| 72 ] | 72 ] |
| 73 sources += [ | 73 sources += [ |
| 74 "event_page_request_manager.cc", |
| 75 "event_page_request_manager.h", |
| 76 "event_page_request_manager_factory.cc", |
| 77 "event_page_request_manager_factory.h", |
| 78 |
| 74 # TODO(crbug.com/646627): Move media_router_ui_service* to | 79 # TODO(crbug.com/646627): Move media_router_ui_service* to |
| 75 # chrome/browser/ui/. | 80 # chrome/browser/ui/. |
| 76 "media_router_ui_service.cc", | 81 "media_router_ui_service.cc", |
| 77 "media_router_ui_service.h", | 82 "media_router_ui_service.h", |
| 78 "media_router_ui_service_factory.cc", | 83 "media_router_ui_service_factory.cc", |
| 79 "media_router_ui_service_factory.h", | 84 "media_router_ui_service_factory.h", |
| 80 "mojo/media_route_provider_util_win.cc", | 85 "mojo/media_route_provider_util_win.cc", |
| 81 "mojo/media_route_provider_util_win.h", | 86 "mojo/media_route_provider_util_win.h", |
| 82 "mojo/media_router_mojo_impl.cc", | 87 "mojo/media_router_mojo_impl.cc", |
| 83 "mojo/media_router_mojo_impl.h", | 88 "mojo/media_router_mojo_impl.h", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 110 "//extensions/common", | 115 "//extensions/common", |
| 111 ] | 116 ] |
| 112 sources += [ | 117 sources += [ |
| 113 "discovery/mdns/mock_dns_sd_registry.cc", | 118 "discovery/mdns/mock_dns_sd_registry.cc", |
| 114 "discovery/mdns/mock_dns_sd_registry.h", | 119 "discovery/mdns/mock_dns_sd_registry.h", |
| 115 "mojo/media_router_mojo_test.cc", | 120 "mojo/media_router_mojo_test.cc", |
| 116 "mojo/media_router_mojo_test.h", | 121 "mojo/media_router_mojo_test.h", |
| 117 ] | 122 ] |
| 118 } | 123 } |
| 119 } | 124 } |
| OLD | NEW |