| 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 "//net", | 17 "//net", |
| 18 "//third_party/icu", | 18 "//third_party/icu", |
| 19 "//url", | 19 "//url", |
| 20 ] | 20 ] |
| 21 sources = [ | 21 sources = [ |
| 22 "browser_presentation_connection_proxy.cc", | 22 "browser_presentation_connection_proxy.cc", |
| 23 "browser_presentation_connection_proxy.h", | 23 "browser_presentation_connection_proxy.h", |
| 24 "create_presentation_connection_request.cc", | 24 "create_presentation_connection_request.cc", |
| 25 "create_presentation_connection_request.h", | 25 "create_presentation_connection_request.h", |
| 26 "discovery/dial/safe_dial_device_description_parser.cc", |
| 27 "discovery/dial/safe_dial_device_description_parser.h", |
| 26 "discovery/media_sink_internal.cc", | 28 "discovery/media_sink_internal.cc", |
| 27 "discovery/media_sink_internal.h", | 29 "discovery/media_sink_internal.h", |
| 28 "issue.cc", | 30 "issue.cc", |
| 29 "issue.h", | 31 "issue.h", |
| 30 "issue_manager.cc", | 32 "issue_manager.cc", |
| 31 "issue_manager.h", | 33 "issue_manager.h", |
| 32 "issues_observer.cc", | 34 "issues_observer.cc", |
| 33 "issues_observer.h", | 35 "issues_observer.h", |
| 34 "media_route.cc", | 36 "media_route.cc", |
| 35 "media_route.h", | 37 "media_route.h", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ":mojo_bindings", | 146 ":mojo_bindings", |
| 145 ":mojo_test_interfaces", | 147 ":mojo_test_interfaces", |
| 146 "//extensions/common", | 148 "//extensions/common", |
| 147 ] | 149 ] |
| 148 sources += [ | 150 sources += [ |
| 149 "mojo/media_router_mojo_test.cc", | 151 "mojo/media_router_mojo_test.cc", |
| 150 "mojo/media_router_mojo_test.h", | 152 "mojo/media_router_mojo_test.h", |
| 151 ] | 153 ] |
| 152 } | 154 } |
| 153 } | 155 } |
| OLD | NEW |