| 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 11 matching lines...) Expand all Loading... |
| 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/device_description_fetcher.cc", | 26 "discovery/dial/device_description_fetcher.cc", |
| 27 "discovery/dial/device_description_fetcher.h ", | 27 "discovery/dial/device_description_fetcher.h ", |
| 28 "discovery/dial/dial_device_data.cc", | 28 "discovery/dial/dial_device_data.cc", |
| 29 "discovery/dial/dial_device_data.h", | 29 "discovery/dial/dial_device_data.h", |
| 30 "discovery/dial/dial_registry.cc", | 30 "discovery/dial/dial_registry.cc", |
| 31 "discovery/dial/dial_registry.h", | 31 "discovery/dial/dial_registry.h", |
| 32 "discovery/dial/dial_registry_factory.cc", |
| 33 "discovery/dial/dial_registry_factory.h", |
| 32 "discovery/dial/dial_service.cc", | 34 "discovery/dial/dial_service.cc", |
| 33 "discovery/dial/dial_service.h", | 35 "discovery/dial/dial_service.h", |
| 34 "discovery/media_sink_internal.cc", | 36 "discovery/media_sink_internal.cc", |
| 35 "discovery/media_sink_internal.h", | 37 "discovery/media_sink_internal.h", |
| 36 "issue.cc", | 38 "issue.cc", |
| 37 "issue.h", | 39 "issue.h", |
| 38 "issue_manager.cc", | 40 "issue_manager.cc", |
| 39 "issue_manager.h", | 41 "issue_manager.h", |
| 40 "issues_observer.cc", | 42 "issues_observer.cc", |
| 41 "issues_observer.h", | 43 "issues_observer.h", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 ":mojo_bindings", | 154 ":mojo_bindings", |
| 153 ":mojo_test_interfaces", | 155 ":mojo_test_interfaces", |
| 154 "//extensions/common", | 156 "//extensions/common", |
| 155 ] | 157 ] |
| 156 sources += [ | 158 sources += [ |
| 157 "mojo/media_router_mojo_test.cc", | 159 "mojo/media_router_mojo_test.cc", |
| 158 "mojo/media_router_mojo_test.h", | 160 "mojo/media_router_mojo_test.h", |
| 159 ] | 161 ] |
| 160 } | 162 } |
| 161 } | 163 } |
| OLD | NEW |