OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include <stdint.h> | 5 #include <stdint.h> |
6 #include <stdio.h> | 6 #include <stdio.h> |
7 #include <string.h> | 7 #include <string.h> |
8 | 8 |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 #include <utility> | 11 #include <utility> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
15 #include "build/build_config.h" // TODO(vtl): Remove this. | 15 #include "build/build_config.h" // TODO(vtl): Remove this. |
16 #include "mojo/edk/embedder/simple_platform_support.h" | 16 #include "mojo/edk/embedder/simple_platform_support.h" |
17 #include "mojo/edk/platform/platform_handle_utils_posix.h" | 17 #include "mojo/edk/platform/platform_handle_utils_posix.h" |
18 #include "mojo/edk/platform/platform_shared_buffer.h" | 18 #include "mojo/edk/platform/platform_shared_buffer.h" |
19 #include "mojo/edk/platform/scoped_platform_handle.h" | 19 #include "mojo/edk/platform/scoped_platform_handle.h" |
20 #include "mojo/edk/system/channel.h" | 20 #include "mojo/edk/system/channel.h" |
21 #include "mojo/edk/system/dispatcher.h" | 21 #include "mojo/edk/system/dispatcher.h" |
| 22 #include "mojo/edk/system/handle_transport.h" |
22 #include "mojo/edk/system/message_pipe.h" | 23 #include "mojo/edk/system/message_pipe.h" |
23 #include "mojo/edk/system/message_pipe_test_utils.h" | 24 #include "mojo/edk/system/message_pipe_test_utils.h" |
24 #include "mojo/edk/system/platform_handle_dispatcher.h" | 25 #include "mojo/edk/system/platform_handle_dispatcher.h" |
25 #include "mojo/edk/system/raw_channel.h" | 26 #include "mojo/edk/system/raw_channel.h" |
26 #include "mojo/edk/system/shared_buffer_dispatcher.h" | 27 #include "mojo/edk/system/shared_buffer_dispatcher.h" |
27 #include "mojo/edk/system/test/scoped_test_dir.h" | 28 #include "mojo/edk/system/test/scoped_test_dir.h" |
28 #include "mojo/edk/util/ref_ptr.h" | 29 #include "mojo/edk/util/ref_ptr.h" |
29 #include "mojo/edk/util/scoped_file.h" | 30 #include "mojo/edk/util/scoped_file.h" |
30 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
31 | 32 |
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 // Android multi-process tests are not executing the new process. This is flaky. | 513 // Android multi-process tests are not executing the new process. This is flaky. |
513 #if !defined(OS_ANDROID) | 514 #if !defined(OS_ANDROID) |
514 INSTANTIATE_TEST_CASE_P(PipeCount, | 515 INSTANTIATE_TEST_CASE_P(PipeCount, |
515 MultiprocessMessagePipeTestWithPipeCount, | 516 MultiprocessMessagePipeTestWithPipeCount, |
516 testing::Values(1u, 128u, 140u)); | 517 testing::Values(1u, 128u, 140u)); |
517 #endif | 518 #endif |
518 | 519 |
519 } // namespace | 520 } // namespace |
520 } // namespace system | 521 } // namespace system |
521 } // namespace mojo | 522 } // namespace mojo |
OLD | NEW |