| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 sources = [ "run_all_perftests.cc" ] | 50 sources = [ "run_all_perftests.cc" ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 | 53 |
| 54 # GYP version: mojo/edk/mojo_edk.gyp:mojo_test_support_impl | 54 # GYP version: mojo/edk/mojo_edk.gyp:mojo_test_support_impl |
| 55 source_set("test_support_impl") { | 55 source_set("test_support_impl") { |
| 56 testonly = true | 56 testonly = true |
| 57 deps = [ | 57 deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//base/test:test_support", | |
| 60 "//mojo/public/c/test_support", | |
| 61 ] | 59 ] |
| 62 | 60 |
| 63 sources = [ | 61 sources = [ |
| 64 "test_support_impl.cc", | 62 "test_support_impl.cc", |
| 65 "test_support_impl.h", | 63 "test_support_impl.h", |
| 66 ] | 64 ] |
| 67 } | 65 } |
| OLD | NEW |