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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 source_set("unit_tests") { | 67 source_set("unit_tests") { |
68 testonly = true | 68 testonly = true |
69 deps = [ | 69 deps = [ |
70 ":router_core", | 70 ":router_core", |
71 ":unit_tests_support", | 71 ":unit_tests_support", |
72 "//base/test:test_support", | 72 "//base/test:test_support", |
73 "//chrome/test:test_support", | 73 "//chrome/test:test_support", |
74 "//testing/gmock", | 74 "//testing/gmock", |
75 "//testing/gtest", | 75 "//testing/gtest", |
| 76 "//third_party/cld_2:cld2_static", |
76 "//third_party/mojo/src/mojo/public/cpp/bindings", | 77 "//third_party/mojo/src/mojo/public/cpp/bindings", |
77 ] | 78 ] |
78 sources = [ | 79 sources = [ |
79 "media_route_unittest.cc", | 80 "media_route_unittest.cc", |
80 "media_router_type_converters_unittest.cc", | 81 "media_router_type_converters_unittest.cc", |
81 "media_sink_unittest.cc", | 82 "media_sink_unittest.cc", |
82 "media_source_unittest.cc", | 83 "media_source_unittest.cc", |
83 "presentation_media_sinks_observer_unittest.cc", | 84 "presentation_media_sinks_observer_unittest.cc", |
84 "route_id_manager_unittest.cc", | 85 "route_id_manager_unittest.cc", |
85 ] | 86 ] |
(...skipping 22 matching lines...) Expand all Loading... |
108 # Optional standalone test binary, for faster isolated builds. | 109 # Optional standalone test binary, for faster isolated builds. |
109 test("unit_tests_main") { | 110 test("unit_tests_main") { |
110 deps = [ | 111 deps = [ |
111 ":unit_tests", | 112 ":unit_tests", |
112 "//testing/gmock:gmock_main", | 113 "//testing/gmock:gmock_main", |
113 ] | 114 ] |
114 sources = [ | 115 sources = [ |
115 ":unittest_files", | 116 ":unittest_files", |
116 ] | 117 ] |
117 } | 118 } |
OLD | NEW |