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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 "route_request_result.h", | 60 "route_request_result.h", |
61 ] | 61 ] |
62 | 62 |
63 if (!is_android) { | 63 if (!is_android) { |
64 deps += [ | 64 deps += [ |
65 ":mojo_bindings", | 65 ":mojo_bindings", |
66 "//extensions/browser", | 66 "//extensions/browser", |
67 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
68 ] | 68 ] |
69 sources += [ | 69 sources += [ |
| 70 # TODO(crbug.com/646627): Move media_router_ui_service* to |
| 71 # chrome/browser/ui/. |
| 72 "media_router_ui_service.cc", |
| 73 "media_router_ui_service.h", |
| 74 "media_router_ui_service_factory.cc", |
| 75 "media_router_ui_service_factory.h", |
70 "mojo/media_route_provider_util_win.cc", | 76 "mojo/media_route_provider_util_win.cc", |
71 "mojo/media_route_provider_util_win.h", | 77 "mojo/media_route_provider_util_win.h", |
72 "mojo/media_router_mojo_impl.cc", | 78 "mojo/media_router_mojo_impl.cc", |
73 "mojo/media_router_mojo_impl.h", | 79 "mojo/media_router_mojo_impl.h", |
74 "mojo/media_router_mojo_metrics.cc", | 80 "mojo/media_router_mojo_metrics.cc", |
75 "mojo/media_router_mojo_metrics.h", | 81 "mojo/media_router_mojo_metrics.h", |
76 "mojo/media_router_type_converters.cc", | 82 "mojo/media_router_type_converters.cc", |
77 "mojo/media_router_type_converters.h", | 83 "mojo/media_router_type_converters.h", |
78 ] | 84 ] |
79 } | 85 } |
(...skipping 29 matching lines...) Expand all Loading... |
109 deps += [ | 115 deps += [ |
110 ":mojo_bindings", | 116 ":mojo_bindings", |
111 "//extensions/common", | 117 "//extensions/common", |
112 ] | 118 ] |
113 sources += [ | 119 sources += [ |
114 "mojo/media_router_mojo_test.cc", | 120 "mojo/media_router_mojo_test.cc", |
115 "mojo/media_router_mojo_test.h", | 121 "mojo/media_router_mojo_test.h", |
116 ] | 122 ] |
117 } | 123 } |
118 } | 124 } |
OLD | NEW |