| 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 source_set("test_support") { | 7 source_set("test_support") { |
| 8 testonly = true | 8 testonly = true |
| 9 sources = [ | 9 sources = [ |
| 10 "multiprocess_test_helper.cc", | 10 "multiprocess_test_helper.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "//third_party/mojo/src/mojo/edk/system", | 47 "//third_party/mojo/src/mojo/edk/system", |
| 48 ] | 48 ] |
| 49 } | 49 } |
| 50 | 50 |
| 51 source_set("run_all_perftests") { | 51 source_set("run_all_perftests") { |
| 52 testonly = true | 52 testonly = true |
| 53 deps = [ | 53 deps = [ |
| 54 ":test_support_impl", | 54 ":test_support_impl", |
| 55 "//base", | 55 "//base", |
| 56 "//base/test:test_support", | 56 "//base/test:test_support", |
| 57 "//mojo/edk/test:test_support", |
| 57 "//mojo/public/c/test_support", | 58 "//mojo/public/c/test_support", |
| 58 | 59 |
| 59 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 60 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
| 60 # declared in third party only for now. | 61 # declared in third party only for now. |
| 61 "//third_party/mojo/src/mojo/edk/system", | 62 "//third_party/mojo/src/mojo/edk/system", |
| 62 ] | 63 ] |
| 63 | 64 |
| 64 sources = [ | 65 sources = [ |
| 65 "run_all_perftests.cc", | 66 "run_all_perftests.cc", |
| 66 ] | 67 ] |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 ] | 131 ] |
| 131 } | 132 } |
| 132 | 133 |
| 133 # TODO(use_chrome_edk): remove "2" | 134 # TODO(use_chrome_edk): remove "2" |
| 134 test("mojo_public_utility_unittests2") { | 135 test("mojo_public_utility_unittests2") { |
| 135 deps = [ | 136 deps = [ |
| 136 ":run_all_unittests", | 137 ":run_all_unittests", |
| 137 "//mojo/public/cpp/utility/tests", | 138 "//mojo/public/cpp/utility/tests", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |