| 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "mutex.h", | 87 "mutex.h", |
| 88 "options_validation.h", | 88 "options_validation.h", |
| 89 "platform_handle_dispatcher.cc", | 89 "platform_handle_dispatcher.cc", |
| 90 "platform_handle_dispatcher.h", | 90 "platform_handle_dispatcher.h", |
| 91 "process_identifier.h", | 91 "process_identifier.h", |
| 92 "proxy_message_pipe_endpoint.cc", | 92 "proxy_message_pipe_endpoint.cc", |
| 93 "proxy_message_pipe_endpoint.h", | 93 "proxy_message_pipe_endpoint.h", |
| 94 "raw_channel.cc", | 94 "raw_channel.cc", |
| 95 "raw_channel.h", | 95 "raw_channel.h", |
| 96 "raw_channel_posix.cc", | 96 "raw_channel_posix.cc", |
| 97 "raw_channel_win.cc", | |
| 98 "remote_consumer_data_pipe_impl.cc", | 97 "remote_consumer_data_pipe_impl.cc", |
| 99 "remote_consumer_data_pipe_impl.h", | 98 "remote_consumer_data_pipe_impl.h", |
| 100 "remote_data_pipe_ack.h", | 99 "remote_data_pipe_ack.h", |
| 101 "remote_producer_data_pipe_impl.cc", | 100 "remote_producer_data_pipe_impl.cc", |
| 102 "remote_producer_data_pipe_impl.h", | 101 "remote_producer_data_pipe_impl.h", |
| 103 "shared_buffer_dispatcher.cc", | 102 "shared_buffer_dispatcher.cc", |
| 104 "shared_buffer_dispatcher.h", | 103 "shared_buffer_dispatcher.h", |
| 105 "simple_dispatcher.cc", | 104 "simple_dispatcher.cc", |
| 106 "simple_dispatcher.h", | 105 "simple_dispatcher.h", |
| 107 "slave_connection_manager.cc", | 106 "slave_connection_manager.cc", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 deps = [ | 237 deps = [ |
| 239 ":system", | 238 ":system", |
| 240 ":test_utils", | 239 ":test_utils", |
| 241 "../test:test_support", | 240 "../test:test_support", |
| 242 "//base", | 241 "//base", |
| 243 "//base/test:test_support", | 242 "//base/test:test_support", |
| 244 "//base/test:test_support_perf", | 243 "//base/test:test_support_perf", |
| 245 "//testing/gtest", | 244 "//testing/gtest", |
| 246 ] | 245 ] |
| 247 } | 246 } |
| OLD | NEW |