| 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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 "message_pipe_test_utils.h", | 118 "message_pipe_test_utils.h", |
| 119 "message_pipe_unittest.cc", | 119 "message_pipe_unittest.cc", |
| 120 "multiprocess_message_pipe_unittest.cc", | 120 "multiprocess_message_pipe_unittest.cc", |
| 121 "options_validation_unittest.cc", | 121 "options_validation_unittest.cc", |
| 122 "platform_handle_dispatcher_unittest.cc", | 122 "platform_handle_dispatcher_unittest.cc", |
| 123 "raw_channel_unittest.cc", | 123 "raw_channel_unittest.cc", |
| 124 "remote_message_pipe_unittest.cc", | 124 "remote_message_pipe_unittest.cc", |
| 125 "run_all_unittests.cc", | 125 "run_all_unittests.cc", |
| 126 "shared_buffer_dispatcher_unittest.cc", | 126 "shared_buffer_dispatcher_unittest.cc", |
| 127 "simple_dispatcher_unittest.cc", | 127 "simple_dispatcher_unittest.cc", |
| 128 |
| 128 # TODO(vtl): Factor test_utils.* into their own source set. | 129 # TODO(vtl): Factor test_utils.* into their own source set. |
| 129 "test_utils.cc", | 130 "test_utils.cc", |
| 130 "test_utils.h", | 131 "test_utils.h", |
| 131 "waiter_list_unittest.cc", | 132 "waiter_list_unittest.cc", |
| 132 "waiter_test_utils.cc", | 133 "waiter_test_utils.cc", |
| 133 "waiter_test_utils.h", | 134 "waiter_test_utils.h", |
| 134 "waiter_unittest.cc", | 135 "waiter_unittest.cc", |
| 135 ] | 136 ] |
| 136 | 137 |
| 137 deps = [ | 138 deps = [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 158 | 159 |
| 159 deps = [ | 160 deps = [ |
| 160 ":system", | 161 ":system", |
| 161 "//base", | 162 "//base", |
| 162 "//base/test:test_support", | 163 "//base/test:test_support", |
| 163 "//base/test:test_support_perf", | 164 "//base/test:test_support_perf", |
| 164 "//mojo/edk/test:test_support", | 165 "//mojo/edk/test:test_support", |
| 165 "//testing/gtest", | 166 "//testing/gtest", |
| 166 ] | 167 ] |
| 167 } | 168 } |
| OLD | NEW |