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 17 matching lines...) Expand all Loading... | |
28 "media_route.h", | 28 "media_route.h", |
29 "media_router.h", | 29 "media_router.h", |
30 "media_router_base.cc", | 30 "media_router_base.cc", |
31 "media_router_base.h", | 31 "media_router_base.h", |
32 "media_router_dialog_controller.cc", | 32 "media_router_dialog_controller.cc", |
33 "media_router_dialog_controller.h", | 33 "media_router_dialog_controller.h", |
34 "media_router_factory.cc", | 34 "media_router_factory.cc", |
35 "media_router_factory.h", | 35 "media_router_factory.h", |
36 "media_router_metrics.cc", | 36 "media_router_metrics.cc", |
37 "media_router_metrics.h", | 37 "media_router_metrics.h", |
38 "media_router_ui_service.cc", | |
mark a. foltz
2016/09/13 18:23:05
File a cleanup bug and add a TODO(crbug.com/XXX) t
takumif
2016/09/14 04:00:51
Done.
| |
39 "media_router_ui_service.h", | |
40 "media_router_ui_service_factory.cc", | |
41 "media_router_ui_service_factory.h", | |
38 "media_routes_observer.cc", | 42 "media_routes_observer.cc", |
39 "media_routes_observer.h", | 43 "media_routes_observer.h", |
40 "media_sink.cc", | 44 "media_sink.cc", |
41 "media_sink.h", | 45 "media_sink.h", |
42 "media_sinks_observer.cc", | 46 "media_sinks_observer.cc", |
43 "media_sinks_observer.h", | 47 "media_sinks_observer.h", |
44 "media_source.cc", | 48 "media_source.cc", |
45 "media_source.h", | 49 "media_source.h", |
46 "media_source_helper.cc", | 50 "media_source_helper.cc", |
47 "media_source_helper.h", | 51 "media_source_helper.h", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
105 deps += [ | 109 deps += [ |
106 ":mojo_bindings", | 110 ":mojo_bindings", |
107 "//extensions/common", | 111 "//extensions/common", |
108 ] | 112 ] |
109 sources += [ | 113 sources += [ |
110 "mojo/media_router_mojo_test.cc", | 114 "mojo/media_router_mojo_test.cc", |
111 "mojo/media_router_mojo_test.h", | 115 "mojo/media_router_mojo_test.h", |
112 ] | 116 ] |
113 } | 117 } |
114 } | 118 } |
OLD | NEW |