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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 source_set("router") { | 8 source_set("router") { |
9 deps = [ | 9 deps = [ |
10 ":router_core", | 10 ":router_core", |
(...skipping 28 matching lines...) Expand all Loading... | |
39 "media_routes_observer.cc", | 39 "media_routes_observer.cc", |
40 "media_routes_observer.h", | 40 "media_routes_observer.h", |
41 "media_sink.cc", | 41 "media_sink.cc", |
42 "media_sink.h", | 42 "media_sink.h", |
43 "media_sinks_observer.cc", | 43 "media_sinks_observer.cc", |
44 "media_sinks_observer.h", | 44 "media_sinks_observer.h", |
45 "media_source.cc", | 45 "media_source.cc", |
46 "media_source.h", | 46 "media_source.h", |
47 "media_source_helper.cc", | 47 "media_source_helper.cc", |
48 "media_source_helper.h", | 48 "media_source_helper.h", |
49 "presentation_helper.cc", | |
50 "presentation_helper.h", | |
49 "presentation_media_sinks_observer.cc", | 51 "presentation_media_sinks_observer.cc", |
50 "presentation_media_sinks_observer.h", | 52 "presentation_media_sinks_observer.h", |
53 "presentation_service_delegate_impl.cc", | |
54 "presentation_service_delegate_impl.h", | |
Wez
2015/05/27 22:37:48
Where are the browser and unit-test .ccs added to
| |
51 "route_id_manager.cc", | 55 "route_id_manager.cc", |
52 "route_id_manager.h", | 56 "route_id_manager.h", |
53 ] | 57 ] |
54 } | 58 } |
55 | 59 |
56 source_set("keyed_service_factories") { | 60 source_set("keyed_service_factories") { |
57 deps = [ | 61 deps = [ |
58 ":router_core", | 62 ":router_core", |
59 "//components/keyed_service/content", | 63 "//components/keyed_service/content", |
60 ] | 64 ] |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
108 # Optional standalone test binary, for faster isolated builds. | 112 # Optional standalone test binary, for faster isolated builds. |
109 test("unit_tests_main") { | 113 test("unit_tests_main") { |
110 deps = [ | 114 deps = [ |
111 ":unit_tests", | 115 ":unit_tests", |
112 "//testing/gmock:gmock_main", | 116 "//testing/gmock:gmock_main", |
113 ] | 117 ] |
114 sources = [ | 118 sources = [ |
115 ":unittest_files", | 119 ":unittest_files", |
116 ] | 120 ] |
117 } | 121 } |
OLD | NEW |