| 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("router") { | 8 static_library("router") { |
| 9 deps = [ | 9 deps = [ |
| 10 "//base", | 10 "//base", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 "media_router_base.cc", | 33 "media_router_base.cc", |
| 34 "media_router_base.h", | 34 "media_router_base.h", |
| 35 "media_router_dialog_controller.cc", | 35 "media_router_dialog_controller.cc", |
| 36 "media_router_dialog_controller.h", | 36 "media_router_dialog_controller.h", |
| 37 "media_router_factory.cc", | 37 "media_router_factory.cc", |
| 38 "media_router_factory.h", | 38 "media_router_factory.h", |
| 39 "media_router_metrics.cc", | 39 "media_router_metrics.cc", |
| 40 "media_router_metrics.h", | 40 "media_router_metrics.h", |
| 41 "media_routes_observer.cc", | 41 "media_routes_observer.cc", |
| 42 "media_routes_observer.h", | 42 "media_routes_observer.h", |
| 43 "media_sink_service.cc", | |
| 44 "media_sink_service.h", | |
| 45 "media_sinks_observer.cc", | 43 "media_sinks_observer.cc", |
| 46 "media_sinks_observer.h", | 44 "media_sinks_observer.h", |
| 47 "mojo/media_route_controller.cc", | 45 "mojo/media_route_controller.cc", |
| 48 "mojo/media_route_controller.h", | 46 "mojo/media_route_controller.h", |
| 49 "offscreen_presentation_manager.cc", | 47 "offscreen_presentation_manager.cc", |
| 50 "offscreen_presentation_manager.h", | 48 "offscreen_presentation_manager.h", |
| 51 "offscreen_presentation_manager_factory.cc", | 49 "offscreen_presentation_manager_factory.cc", |
| 52 "offscreen_presentation_manager_factory.h", | 50 "offscreen_presentation_manager_factory.h", |
| 53 "presentation_media_sinks_observer.cc", | 51 "presentation_media_sinks_observer.cc", |
| 54 "presentation_media_sinks_observer.h", | 52 "presentation_media_sinks_observer.h", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "//chrome/common/media_router/mojo:media_router", | 107 "//chrome/common/media_router/mojo:media_router", |
| 110 "//chrome/common/media_router/mojo:media_router_test_interfaces", | 108 "//chrome/common/media_router/mojo:media_router_test_interfaces", |
| 111 "//extensions/common", | 109 "//extensions/common", |
| 112 ] | 110 ] |
| 113 sources += [ | 111 sources += [ |
| 114 "mojo/media_router_mojo_test.cc", | 112 "mojo/media_router_mojo_test.cc", |
| 115 "mojo/media_router_mojo_test.h", | 113 "mojo/media_router_mojo_test.h", |
| 116 ] | 114 ] |
| 117 } | 115 } |
| 118 } | 116 } |
| OLD | NEW |