| 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", |
| 11 ":keyed_service_factories", | 11 ":keyed_service_factories", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 source_set("router_core") { | 15 source_set("router_core") { |
| 16 deps = [ | 16 deps = [ |
| 17 "//base", | 17 "//base", |
| 18 "//components/keyed_service/core", | 18 "//components/keyed_service/core", |
| 19 "//url", | 19 "//url", |
| 20 ] | 20 ] |
| 21 sources = [ | 21 sources = [ |
| 22 "issue.cc", |
| 23 "issue.h", |
| 24 "issue_manager.cc", |
| 25 "issue_manager.h", |
| 26 "issues_observer.h", |
| 22 "media_route.cc", | 27 "media_route.cc", |
| 23 "media_route.h", | 28 "media_route.h", |
| 24 "media_route_id.h", | 29 "media_route_id.h", |
| 25 "media_router.h", | 30 "media_router.h", |
| 26 "media_router_impl.cc", | 31 "media_router_impl.cc", |
| 27 "media_router_impl.h", | 32 "media_router_impl.h", |
| 28 "media_routes_observer.cc", | 33 "media_routes_observer.cc", |
| 29 "media_routes_observer.h", | 34 "media_routes_observer.h", |
| 30 "media_sink.cc", | 35 "media_sink.cc", |
| 31 "media_sink.h", | 36 "media_sink.h", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 # Optional standalone test binary, for faster isolated builds. | 81 # Optional standalone test binary, for faster isolated builds. |
| 77 test("unit_tests_main") { | 82 test("unit_tests_main") { |
| 78 deps = [ | 83 deps = [ |
| 79 ":unit_tests", | 84 ":unit_tests", |
| 80 "//testing/gmock:gmock_main", | 85 "//testing/gmock:gmock_main", |
| 81 ] | 86 ] |
| 82 sources = [ | 87 sources = [ |
| 83 ":unittest_files", | 88 ":unittest_files", |
| 84 ] | 89 ] |
| 85 } | 90 } |
| OLD | NEW |