| 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 | 6 |
| 7 source_set("router") { | 7 source_set("router") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":router_core", | 9 ":router_core", |
| 10 ":keyed_service_factories", | 10 ":keyed_service_factories", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "//testing/gtest", | 59 "//testing/gtest", |
| 60 ] | 60 ] |
| 61 sources = [ | 61 sources = [ |
| 62 "media_route_unittest.cc", | 62 "media_route_unittest.cc", |
| 63 "media_sink_unittest.cc", | 63 "media_sink_unittest.cc", |
| 64 "media_source_unittest.cc", | 64 "media_source_unittest.cc", |
| 65 "route_id_manager_unittest.cc", | 65 "route_id_manager_unittest.cc", |
| 66 ] | 66 ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 mojom("mojo_bindings") { |
| 70 sources = [ |
| 71 "media_router_api.mojom", |
| 72 ] |
| 73 } |
| 74 |
| 69 # Optional standalone test binary, for faster isolated builds. | 75 # Optional standalone test binary, for faster isolated builds. |
| 70 test("unit_tests_main") { | 76 test("unit_tests_main") { |
| 71 deps = [ | 77 deps = [ |
| 72 ":unit_tests", | 78 ":unit_tests", |
| 73 "//testing/gmock:gmock_main", | 79 "//testing/gmock:gmock_main", |
| 74 ] | 80 ] |
| 75 sources = [ | 81 sources = [ |
| 76 ":unittest_files", | 82 ":unittest_files", |
| 77 ] | 83 ] |
| 78 } | 84 } |
| OLD | NEW |