OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 "//base", | 138 "//base", |
139 "//base/third_party/dynamic_annotations", | 139 "//base/third_party/dynamic_annotations", |
140 ] | 140 ] |
141 | 141 |
142 allow_circular_includes_from = [ "../embedder" ] | 142 allow_circular_includes_from = [ "../embedder" ] |
143 } | 143 } |
144 | 144 |
145 group("tests") { | 145 group("tests") { |
146 testonly = true | 146 testonly = true |
147 deps = [ | 147 deps = [ |
| 148 ":mojo_message_pipe_perftests", |
148 ":mojo_system_unittests", | 149 ":mojo_system_unittests", |
149 ":mojo_message_pipe_perftests", | |
150 ] | 150 ] |
151 } | 151 } |
152 | 152 |
153 source_set("test_utils") { | 153 source_set("test_utils") { |
154 testonly = true | 154 testonly = true |
155 | 155 |
156 sources = [ | 156 sources = [ |
157 "test_utils.cc", | 157 "test_utils.cc", |
158 "test_utils.h", | 158 "test_utils.h", |
159 ] | 159 ] |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 ":system", | 240 ":system", |
241 ":test_utils", | 241 ":test_utils", |
242 "../test:test_support", | 242 "../test:test_support", |
243 "//base", | 243 "//base", |
244 "//base/test:test_support", | 244 "//base/test:test_support", |
245 "//base/test:test_support_perf", | 245 "//base/test:test_support_perf", |
246 "//mojo/public/cpp/environment:standalone", | 246 "//mojo/public/cpp/environment:standalone", |
247 "//testing/gtest", | 247 "//testing/gtest", |
248 ] | 248 ] |
249 } | 249 } |
OLD | NEW |