| 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 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support | 5 # GYP version: mojo/edk/mojo_edk.gyp:mojo_common_test_support |
| 6 source_set("test_support") { | 6 source_set("test_support") { |
| 7 testonly = true | 7 testonly = true |
| 8 sources = [ | 8 sources = [ |
| 9 "multiprocess_test_helper.cc", | 9 "multiprocess_test_helper.cc", |
| 10 "multiprocess_test_helper.h", | 10 "multiprocess_test_helper.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 testonly = true | 26 testonly = true |
| 27 deps = [ | 27 deps = [ |
| 28 ":test_support_impl", | 28 ":test_support_impl", |
| 29 "//base", | 29 "//base", |
| 30 "//base/test:test_support", | 30 "//base/test:test_support", |
| 31 "//mojo/edk/system", | 31 "//mojo/edk/system", |
| 32 "//mojo/public/c/test_support", | 32 "//mojo/public/c/test_support", |
| 33 "//testing/gtest", | 33 "//testing/gtest", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 sources = [ "run_all_unittests.cc" ] | 36 sources = [ |
| 37 "run_all_unittests.cc", |
| 38 ] |
| 37 } | 39 } |
| 38 | 40 |
| 39 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_perftests | 41 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_perftests |
| 40 source_set("run_all_perftests") { | 42 source_set("run_all_perftests") { |
| 41 testonly = true | 43 testonly = true |
| 42 deps = [ | 44 deps = [ |
| 43 ":test_support_impl", | 45 ":test_support_impl", |
| 44 "//base", | 46 "//base", |
| 45 "//base/test:test_support", | 47 "//base/test:test_support", |
| 46 "//mojo/edk/system", | 48 "//mojo/edk/system", |
| 47 "//mojo/public/c/test_support", | 49 "//mojo/public/c/test_support", |
| 48 ] | 50 ] |
| 49 | 51 |
| 50 sources = [ "run_all_perftests.cc" ] | 52 sources = [ |
| 53 "run_all_perftests.cc", |
| 54 ] |
| 51 } | 55 } |
| 52 | 56 |
| 53 | |
| 54 # GYP version: mojo/edk/mojo_edk.gyp:mojo_test_support_impl | 57 # GYP version: mojo/edk/mojo_edk.gyp:mojo_test_support_impl |
| 55 source_set("test_support_impl") { | 58 source_set("test_support_impl") { |
| 56 testonly = true | 59 testonly = true |
| 57 deps = [ | 60 deps = [ |
| 58 "//base", | 61 "//base", |
| 59 "//base/test:test_support", | 62 "//base/test:test_support", |
| 60 "//mojo/public/c/test_support", | 63 "//mojo/public/c/test_support", |
| 61 ] | 64 ] |
| 62 | 65 |
| 63 sources = [ | 66 sources = [ |
| 64 "test_support_impl.cc", | 67 "test_support_impl.cc", |
| 65 "test_support_impl.h", | 68 "test_support_impl.h", |
| 66 ] | 69 ] |
| 67 } | 70 } |
| OLD | NEW |