| 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 25 matching lines...) Expand all Loading... |
| 36 "media_router_dialog_controller.cc", | 36 "media_router_dialog_controller.cc", |
| 37 "media_router_dialog_controller.h", | 37 "media_router_dialog_controller.h", |
| 38 "media_router_factory.cc", | 38 "media_router_factory.cc", |
| 39 "media_router_factory.h", | 39 "media_router_factory.h", |
| 40 "media_router_metrics.cc", | 40 "media_router_metrics.cc", |
| 41 "media_router_metrics.h", | 41 "media_router_metrics.h", |
| 42 "media_routes_observer.cc", | 42 "media_routes_observer.cc", |
| 43 "media_routes_observer.h", | 43 "media_routes_observer.h", |
| 44 "media_sink.cc", | 44 "media_sink.cc", |
| 45 "media_sink.h", | 45 "media_sink.h", |
| 46 "media_sink_service.cc", |
| 47 "media_sink_service.h", |
| 46 "media_sinks_observer.cc", | 48 "media_sinks_observer.cc", |
| 47 "media_sinks_observer.h", | 49 "media_sinks_observer.h", |
| 48 "media_source.cc", | 50 "media_source.cc", |
| 49 "media_source.h", | 51 "media_source.h", |
| 50 "media_source_helper.cc", | 52 "media_source_helper.cc", |
| 51 "media_source_helper.h", | 53 "media_source_helper.h", |
| 52 "offscreen_presentation_manager.cc", | 54 "offscreen_presentation_manager.cc", |
| 53 "offscreen_presentation_manager.h", | 55 "offscreen_presentation_manager.h", |
| 54 "offscreen_presentation_manager_factory.cc", | 56 "offscreen_presentation_manager_factory.cc", |
| 55 "offscreen_presentation_manager_factory.h", | 57 "offscreen_presentation_manager_factory.h", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 deps += [ | 130 deps += [ |
| 129 ":mojo_bindings", | 131 ":mojo_bindings", |
| 130 "//extensions/common", | 132 "//extensions/common", |
| 131 ] | 133 ] |
| 132 sources += [ | 134 sources += [ |
| 133 "mojo/media_router_mojo_test.cc", | 135 "mojo/media_router_mojo_test.cc", |
| 134 "mojo/media_router_mojo_test.h", | 136 "mojo/media_router_mojo_test.h", |
| 135 ] | 137 ] |
| 136 } | 138 } |
| 137 } | 139 } |
| OLD | NEW |