| 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", | |
| 10 "multiprocess_test_helper.h", | |
| 11 "test_utils.h", | 9 "test_utils.h", |
| 12 "test_utils_posix.cc", | 10 "test_utils_posix.cc", |
| 13 "test_utils_win.cc", | 11 "test_utils_win.cc", |
| 14 ] | 12 ] |
| 15 | 13 |
| 14 if (!is_android) { |
| 15 sources += [ |
| 16 "multiprocess_test_helper.cc", |
| 17 "multiprocess_test_helper.h", |
| 18 ] |
| 19 } |
| 20 |
| 16 deps = [ | 21 deps = [ |
| 17 "//base", | 22 "//base", |
| 18 "//base/test:test_support", | 23 "//base/test:test_support", |
| 19 "//mojo/edk/system", | 24 "//mojo/edk/system", |
| 20 "//testing/gtest", | 25 "//testing/gtest", |
| 21 ] | 26 ] |
| 22 } | 27 } |
| 23 | 28 |
| 24 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_unittests | 29 # GYP version: mojo/edk/mojo_edk.gyp:mojo_run_all_unittests |
| 25 source_set("run_all_unittests") { | 30 source_set("run_all_unittests") { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//base", | 63 "//base", |
| 59 "//base/test:test_support", | 64 "//base/test:test_support", |
| 60 "//mojo/public/c/test_support", | 65 "//mojo/public/c/test_support", |
| 61 ] | 66 ] |
| 62 | 67 |
| 63 sources = [ | 68 sources = [ |
| 64 "test_support_impl.cc", | 69 "test_support_impl.cc", |
| 65 "test_support_impl.h", | 70 "test_support_impl.h", |
| 66 ] | 71 ] |
| 67 } | 72 } |
| OLD | NEW |