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("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
212 "waiter_test_utils.cc", | 212 "waiter_test_utils.cc", |
213 "waiter_test_utils.h", | 213 "waiter_test_utils.h", |
214 "waiter_unittest.cc", | 214 "waiter_unittest.cc", |
215 ] | 215 ] |
216 | 216 |
217 deps = [ | 217 deps = [ |
218 ":system", | 218 ":system", |
219 ":test_utils", | 219 ":test_utils", |
220 "../embedder:embedder_unittests", | 220 "../embedder:embedder_unittests", |
221 "../test:test_support", | 221 "../test:test_support", |
222 "../util", | |
vardhan
2015/09/15 21:48:29
I think it might be safer to use absolute paths fo
| |
222 "//base", | 223 "//base", |
223 "//base/test:test_support", | 224 "//base/test:test_support", |
224 "//testing/gtest", | 225 "//testing/gtest", |
225 ] | 226 ] |
226 | 227 |
227 allow_circular_includes_from = [ "../embedder:embedder_unittests" ] | 228 allow_circular_includes_from = [ "../embedder:embedder_unittests" ] |
228 } | 229 } |
229 | 230 |
230 test("mojo_message_pipe_perftests") { | 231 test("mojo_message_pipe_perftests") { |
231 sources = [ | 232 sources = [ |
232 "message_pipe_perftest.cc", | 233 "message_pipe_perftest.cc", |
233 "message_pipe_test_utils.cc", | 234 "message_pipe_test_utils.cc", |
234 "message_pipe_test_utils.h", | 235 "message_pipe_test_utils.h", |
235 ] | 236 ] |
236 | 237 |
237 deps = [ | 238 deps = [ |
238 ":system", | 239 ":system", |
239 ":test_utils", | 240 ":test_utils", |
240 "../test:test_support", | 241 "../test:test_support", |
241 "//base", | 242 "//base", |
242 "//base/test:test_support", | 243 "//base/test:test_support", |
243 "//base/test:test_support_perf", | 244 "//base/test:test_support_perf", |
244 "//testing/gtest", | 245 "//testing/gtest", |
245 ] | 246 ] |
246 } | 247 } |
OLD | NEW |