| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "route_message.h", | 73 "route_message.h", |
| 74 "route_message_observer.cc", | 74 "route_message_observer.cc", |
| 75 "route_message_observer.h", | 75 "route_message_observer.h", |
| 76 "route_request_result.cc", | 76 "route_request_result.cc", |
| 77 "route_request_result.h", | 77 "route_request_result.h", |
| 78 ] | 78 ] |
| 79 | 79 |
| 80 if (!is_android) { | 80 if (!is_android) { |
| 81 deps += [ | 81 deps += [ |
| 82 ":mojo_bindings", | 82 ":mojo_bindings", |
| 83 "discovery", |
| 83 "//extensions/browser", | 84 "//extensions/browser", |
| 84 "//mojo/public/cpp/bindings", | 85 "//mojo/public/cpp/bindings", |
| 85 ] | 86 ] |
| 86 sources += [ | 87 sources += [ |
| 87 # TODO(crbug.com/646627): Move media_router_ui_service* to | 88 # TODO(crbug.com/646627): Move media_router_ui_service* to |
| 88 # chrome/browser/ui/. | 89 # chrome/browser/ui/. |
| 89 "media_router_ui_service.cc", | 90 "media_router_ui_service.cc", |
| 90 "media_router_ui_service.h", | 91 "media_router_ui_service.h", |
| 91 "media_router_ui_service_factory.cc", | 92 "media_router_ui_service_factory.cc", |
| 92 "media_router_ui_service_factory.h", | 93 "media_router_ui_service_factory.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 ":mojo_bindings", | 145 ":mojo_bindings", |
| 145 ":mojo_test_interfaces", | 146 ":mojo_test_interfaces", |
| 146 "//extensions/common", | 147 "//extensions/common", |
| 147 ] | 148 ] |
| 148 sources += [ | 149 sources += [ |
| 149 "mojo/media_router_mojo_test.cc", | 150 "mojo/media_router_mojo_test.cc", |
| 150 "mojo/media_router_mojo_test.h", | 151 "mojo/media_router_mojo_test.h", |
| 151 ] | 152 ] |
| 152 } | 153 } |
| 153 } | 154 } |
| OLD | NEW |