| 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 = [ |
| 11 "//base", | 11 "//base", |
| 12 "//chrome/common:constants", | 12 "//chrome/common:constants", |
| 13 "//components/keyed_service/content", | 13 "//components/keyed_service/content", |
| 14 "//components/keyed_service/core", | 14 "//components/keyed_service/core", |
| 15 "//content/public/browser", | 15 "//content/public/browser", |
| 16 "//content/public/common", | 16 "//content/public/common", |
| 17 "//third_party/icu", | 17 "//third_party/icu", |
| 18 "//url", | 18 "//url", |
| 19 ] | 19 ] |
| 20 sources = [ | 20 sources = [ |
| 21 "browser_presentation_connection_proxy.cc", | 21 "browser_presentation_connection_proxy.cc", |
| 22 "browser_presentation_connection_proxy.h", | 22 "browser_presentation_connection_proxy.h", |
| 23 "create_presentation_connection_request.cc", | 23 "create_presentation_connection_request.cc", |
| 24 "create_presentation_connection_request.h", | 24 "create_presentation_connection_request.h", |
| 25 "discovery/discovery_network_list.h", |
| 26 "discovery/discovery_network_list_posix.cc", |
| 27 "discovery/discovery_network_list_wifi.h", |
| 28 "discovery/discovery_network_list_wifi_linux.cc", |
| 29 "discovery/discovery_network_monitor.cc", |
| 30 "discovery/discovery_network_monitor.h", |
| 25 "issue.cc", | 31 "issue.cc", |
| 26 "issue.h", | 32 "issue.h", |
| 27 "issue_manager.cc", | 33 "issue_manager.cc", |
| 28 "issue_manager.h", | 34 "issue_manager.h", |
| 29 "issues_observer.cc", | 35 "issues_observer.cc", |
| 30 "issues_observer.h", | 36 "issues_observer.h", |
| 31 "media_route.cc", | 37 "media_route.cc", |
| 32 "media_route.h", | 38 "media_route.h", |
| 33 "media_router.h", | 39 "media_router.h", |
| 34 "media_router_base.cc", | 40 "media_router_base.cc", |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 deps += [ | 134 deps += [ |
| 129 ":mojo_bindings", | 135 ":mojo_bindings", |
| 130 "//extensions/common", | 136 "//extensions/common", |
| 131 ] | 137 ] |
| 132 sources += [ | 138 sources += [ |
| 133 "mojo/media_router_mojo_test.cc", | 139 "mojo/media_router_mojo_test.cc", |
| 134 "mojo/media_router_mojo_test.h", | 140 "mojo/media_router_mojo_test.h", |
| 135 ] | 141 ] |
| 136 } | 142 } |
| 137 } | 143 } |
| OLD | NEW |