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 config("system_config") { | 5 config("system_config") { |
6 defines = [ | 6 defines = [ |
7 # Ensures that dependent projects import the core functions on Windows. | 7 # Ensures that dependent projects import the core functions on Windows. |
8 "MOJO_USE_SYSTEM_IMPL", | 8 "MOJO_USE_SYSTEM_IMPL", |
9 ] | 9 ] |
10 } | 10 } |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 sources = [ | 96 sources = [ |
97 "channel_unittest.cc", | 97 "channel_unittest.cc", |
98 "core_unittest.cc", | 98 "core_unittest.cc", |
99 "core_test_base.cc", | 99 "core_test_base.cc", |
100 "core_test_base.h", | 100 "core_test_base.h", |
101 "data_pipe_unittest.cc", | 101 "data_pipe_unittest.cc", |
102 "dispatcher_unittest.cc", | 102 "dispatcher_unittest.cc", |
103 "local_data_pipe_unittest.cc", | 103 "local_data_pipe_unittest.cc", |
104 "memory_unittest.cc", | 104 "memory_unittest.cc", |
105 "message_pipe_dispatcher_unittest.cc", | 105 "message_pipe_dispatcher_unittest.cc", |
| 106 "message_pipe_test_utils.h", |
| 107 "message_pipe_test_utils.cc", |
106 "message_pipe_unittest.cc", | 108 "message_pipe_unittest.cc", |
107 "multiprocess_message_pipe_unittest.cc", | 109 "multiprocess_message_pipe_unittest.cc", |
108 "options_validation_unittest.cc", | 110 "options_validation_unittest.cc", |
109 "platform_handle_dispatcher_unittest.cc", | 111 "platform_handle_dispatcher_unittest.cc", |
110 "raw_channel_unittest.cc", | 112 "raw_channel_unittest.cc", |
111 "remote_message_pipe_unittest.cc", | 113 "remote_message_pipe_unittest.cc", |
112 "run_all_unittests.cc", | 114 "run_all_unittests.cc", |
113 "shared_buffer_dispatcher_unittest.cc", | 115 "shared_buffer_dispatcher_unittest.cc", |
114 "simple_dispatcher_unittest.cc", | 116 "simple_dispatcher_unittest.cc", |
115 "test_utils.cc", | 117 "test_utils.cc", |
116 "test_utils.h", | 118 "test_utils.h", |
117 "waiter_list_unittest.cc", | 119 "waiter_list_unittest.cc", |
118 "waiter_test_utils.cc", | 120 "waiter_test_utils.cc", |
119 "waiter_test_utils.h", | 121 "waiter_test_utils.h", |
120 "waiter_unittest.cc", | 122 "waiter_unittest.cc", |
121 ] | 123 ] |
122 } | 124 } |
| 125 |
| 126 # GYP version: mojo/mojo_base.gyp:mojo_message_pipe_perftests |
| 127 test("mojo_message_pipe_perftests") { |
| 128 deps = [ |
| 129 ":system", |
| 130 "//base", |
| 131 "//base/test:test_support", |
| 132 "//base/test:test_support_perf", |
| 133 "//mojo/common/test:test_support", |
| 134 "//testing/gtest", |
| 135 ] |
| 136 |
| 137 sources = [ |
| 138 "message_pipe_perftest.cc", |
| 139 "message_pipe_test_utils.h", |
| 140 "message_pipe_test_utils.cc", |
| 141 "test_utils.cc", |
| 142 "test_utils.h", |
| 143 ] |
| 144 } |
OLD | NEW |