| 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 import("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "data_pipe_producer_dispatcher.h", | 50 "data_pipe_producer_dispatcher.h", |
| 51 "dispatcher.cc", | 51 "dispatcher.cc", |
| 52 "dispatcher.h", | 52 "dispatcher.h", |
| 53 "endpoint_relayer.cc", | 53 "endpoint_relayer.cc", |
| 54 "endpoint_relayer.h", | 54 "endpoint_relayer.h", |
| 55 "handle_signals_state.h", | 55 "handle_signals_state.h", |
| 56 "handle_table.cc", | 56 "handle_table.cc", |
| 57 "handle_table.h", | 57 "handle_table.h", |
| 58 "incoming_endpoint.cc", | 58 "incoming_endpoint.cc", |
| 59 "incoming_endpoint.h", | 59 "incoming_endpoint.h", |
| 60 "local_data_pipe.cc", | 60 "local_data_pipe_impl.cc", |
| 61 "local_data_pipe.h", | 61 "local_data_pipe_impl.h", |
| 62 "local_message_pipe_endpoint.cc", | 62 "local_message_pipe_endpoint.cc", |
| 63 "local_message_pipe_endpoint.h", | 63 "local_message_pipe_endpoint.h", |
| 64 "mapping_table.cc", | 64 "mapping_table.cc", |
| 65 "mapping_table.h", | 65 "mapping_table.h", |
| 66 "master_connection_manager.cc", | 66 "master_connection_manager.cc", |
| 67 "master_connection_manager.h", | 67 "master_connection_manager.h", |
| 68 "memory.cc", | 68 "memory.cc", |
| 69 "memory.h", | 69 "memory.h", |
| 70 "message_in_transit.cc", | 70 "message_in_transit.cc", |
| 71 "message_in_transit.h", | 71 "message_in_transit.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "awakable_list_unittest.cc", | 150 "awakable_list_unittest.cc", |
| 151 "channel_endpoint_id_unittest.cc", | 151 "channel_endpoint_id_unittest.cc", |
| 152 "channel_manager_unittest.cc", | 152 "channel_manager_unittest.cc", |
| 153 "channel_unittest.cc", | 153 "channel_unittest.cc", |
| 154 "connection_manager_unittest.cc", | 154 "connection_manager_unittest.cc", |
| 155 "core_test_base.cc", | 155 "core_test_base.cc", |
| 156 "core_test_base.h", | 156 "core_test_base.h", |
| 157 "core_unittest.cc", | 157 "core_unittest.cc", |
| 158 "data_pipe_unittest.cc", | 158 "data_pipe_unittest.cc", |
| 159 "dispatcher_unittest.cc", | 159 "dispatcher_unittest.cc", |
| 160 "local_data_pipe_unittest.cc", | 160 "local_data_pipe_impl_unittest.cc", |
| 161 "memory_unittest.cc", | 161 "memory_unittest.cc", |
| 162 "message_pipe_dispatcher_unittest.cc", | 162 "message_pipe_dispatcher_unittest.cc", |
| 163 "message_pipe_test_utils.cc", | 163 "message_pipe_test_utils.cc", |
| 164 "message_pipe_test_utils.h", | 164 "message_pipe_test_utils.h", |
| 165 "message_pipe_unittest.cc", | 165 "message_pipe_unittest.cc", |
| 166 "multiprocess_message_pipe_unittest.cc", | 166 "multiprocess_message_pipe_unittest.cc", |
| 167 "options_validation_unittest.cc", | 167 "options_validation_unittest.cc", |
| 168 "platform_handle_dispatcher_unittest.cc", | 168 "platform_handle_dispatcher_unittest.cc", |
| 169 "raw_channel_unittest.cc", | 169 "raw_channel_unittest.cc", |
| 170 "remote_message_pipe_unittest.cc", | 170 "remote_message_pipe_unittest.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 200 deps = [ | 200 deps = [ |
| 201 ":system", | 201 ":system", |
| 202 ":test_utils", | 202 ":test_utils", |
| 203 "../test:test_support", | 203 "../test:test_support", |
| 204 "//base", | 204 "//base", |
| 205 "//base/test:test_support", | 205 "//base/test:test_support", |
| 206 "//base/test:test_support_perf", | 206 "//base/test:test_support_perf", |
| 207 "//testing/gtest", | 207 "//testing/gtest", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| OLD | NEW |