| 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("../../public/mojo.gni") | 6 import("../../public/mojo.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 mojo_edk_source_set("test_support") { | 9 mojo_edk_source_set("test_support") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 deps = [ | 36 deps = [ |
| 37 ":test_support", | 37 ":test_support", |
| 38 ":test_support_impl", | 38 ":test_support_impl", |
| 39 "//base", | 39 "//base", |
| 40 "//base/test:test_support", | 40 "//base/test:test_support", |
| 41 "//mojo/edk/system", | 41 "//mojo/edk/system", |
| 42 "//testing/gtest", | 42 "//testing/gtest", |
| 43 "//third_party/mojo/src/mojo/public/c/test_support", | 43 "//third_party/mojo/src/mojo/public/c/test_support", |
| 44 |
| 45 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
| 46 # declared in third party only for now. |
| 47 "//third_party/mojo/src/mojo/edk/system", |
| 44 ] | 48 ] |
| 45 } | 49 } |
| 46 | 50 |
| 47 mojo_edk_source_set("run_all_perftests") { | 51 mojo_edk_source_set("run_all_perftests") { |
| 48 testonly = true | 52 testonly = true |
| 49 deps = [ | 53 deps = [ |
| 50 ":test_support_impl", | 54 ":test_support_impl", |
| 51 "//base", | 55 "//base", |
| 52 "//base/test:test_support", | 56 "//base/test:test_support", |
| 53 "//mojo/edk/system", | 57 "//mojo/edk/system", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 ] | 154 ] |
| 151 } | 155 } |
| 152 | 156 |
| 153 # TODO(use_chrome_edk): remove "2" | 157 # TODO(use_chrome_edk): remove "2" |
| 154 test("mojo_system_impl_private_unittests2") { | 158 test("mojo_system_impl_private_unittests2") { |
| 155 deps = [ | 159 deps = [ |
| 156 ":run_all_unittests", | 160 ":run_all_unittests", |
| 157 "../../../third_party/mojo/src/mojo/public/platform/native:system_impl_priva
te_tests", | 161 "../../../third_party/mojo/src/mojo/public/platform/native:system_impl_priva
te_tests", |
| 158 ] | 162 ] |
| 159 } | 163 } |
| OLD | NEW |